Vue.component('tt-select', { props: ['options', 'label', 'required', 'value', 'suffix'], data() { return { selectedOption: undefined, }; }, mounted() { this.selectedOption = this.value; }, watch: { value(newValue) { this.selectedOption = newValue; }, }, template: `
` });