Switch Overview
The Switch enables the user to toggle between checked and unchecked states, and displays exclusive choices.
The Switch wrapper for Vue is a client-side wrapper for Kendo UI Switch widget.
Basic Usage
The following example demonstrates the Switch in action.
<div id="vueapp" class="vue-app">
<kendo-switch name="switch"></kendo-switch>
</div>
Vue.use(InputsInstaller);
new Vue({
el: "#vueapp"
})