步骤1:在子组件的props中定义modelValue 步骤2:为表单绑定事件并在更新值的时候发送自定义事件 context.emit('update:modelValue, value) 步骤3:在标签中使用v-model 具体实现 <!-- 子组件模板 --> exportdefaultdefineComponent({ props: {modelValue: String }, setup (props, context) { const inputRef...
7.Vue3-ref和reactive的区别 4分钟 8.Vue3-计算属性基本结构 2分钟 9.Vue3-v-for的使用 3分钟 03. Vue3全新API实战博客(10节) 1.Vue3-v-model双向数据绑定 3分钟 2.Vue3-实战搜索 5分钟 3.Vue3-观察属性 8分钟 4.Vue3-props属性传值