在 Vue 3 中,.sync 修饰符已经被移除。在 Vue 2 中,.sync 修饰符是一个语法糖,用于简化子组件和父组件之间的双向数据绑定。在 Vue 3 中,推荐使用 v-model 或是自定义事件来实现类似的功能。
1. 使用事件和回调函数
使用事件和回调函数:使用常规的事件绑定和回调函数来实现双向绑定的效果。在父组件中通过属性传递数据给子组件,子组件通过触发事件将修改后的值传递回父组件。例如:
<!-- 父组件 -->
<template>
<ChildComponent :value="parentValue" @update-value="parentValue = $event" />
</template>
<!-- 子组件 -->
<template>
<input :value="value" @input="$emit('update-value', $event.target.value)" />
</template>
在子组件中,通过 @input 事件将输入框的值传递回父组件的 update-value 事件中,然后父组件通过监听 @update-value 事件来更新 parentValue。
2. 使用 v-model 指令和自定义事件
使用 v-model 指令和自定义事件:在子组件中使用 v-model 指令,并在父组件中监听 update:modelValue 事件来实现双向绑定。例如:
<!-- 父组件 -->
<template>
<ChildComponent v-model="parentValue" />
</template>
<!-- 子组件 -->
<template>
<input :value="value" @input="$emit('update:modelValue', $event.target.value)" />
</template>
在子组件中,通过 $emit(‘update:modelValue’, …) 触发 update:modelValue 事件,然后父组件通过 v-model 将该事件和属性绑定起来,实现双向绑定。
3. 使用 v-bind 和 v-on:
使用 v-bind 和 v-on:在父组件中使用 v-bind 绑定子组件的属性,并使用 v-on 监听子组件触发的事件来实现双向绑定。例如:
<!-- 父组件 -->
<template>
<ChildComponent :value="parentValue" @update-value="parentValue = $event" />
</template>
<!-- 子组件 -->
<template>
<input :value="value" @input="$emit('update-value', $event.target.value)" />
</template>
通过 v-bind 将父组件的值传递给子组件的 value 属性,然后在子组件中触发 @input 事件将修改后的值传递给父组件。