Vue.component('tt-textarea', { props: { label: String, required: Boolean, value: String, rows: { type: String, default: "3", } }, data() { return { currentText: this.value, }; }, watch: { value(newValue) { this.currentText = newValue; }, }, template: `
` });