componente Vue3 V-model
// ChildComponent.vue
export default {
props: {
modelValue: String // раньше было `value: String`
},
emits: ['update:modelValue'],
methods: {
changePageTitle(title) {
this.$emit('update:modelValue', title) // раньше было `this.$emit('input', title)`
}
}
}
1
Bad Bee