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