使用.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>

短代码选择!