短代码选择!使用.sync修饰符,即
// this.$emit('update:father-num',100); // 无效
this.$emit('update:fatherNum',100); // 有效
// ......
<father v-bind:father-num.sync="test"></father>
与不使用.sync,即
// this.$emit('update:fatherNum',100); // 无效
this.$emit('update:father-num',100); //有效
// ......
<father v-bind:father-num="test" v-on:update:father-num="test=$event" ></father>
最新评论