Vue.component('ui-switch',{ template: ` `, props:{ value: Boolean, color: String, disabled: Boolean, }, methods:{ _switch(){ this.$emit('input',!this.value); } } })