Vue.component('tt-checkbox', { props: { label: String, required: Boolean, row: Boolean, value: [String, Number, Boolean], hint: String, additionalProps: Object, sm: { type: Boolean, default: false }, }, data() { return { checkedValue: this.value, }; }, watch: { value(val) { this.checkedValue = val; } }, template: `
{{ hint }}
` });