Vue .sync修饰符与this.$emit(update:xxx)

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Vue .sync修饰符与this.$emit(update:xxx)相关的知识,希望对你有一定的参考价值。

参考技术A Vue中的数据是单向数据流:父级 prop 的更新会向下流动到子组件中,但是反过来则不行,即子组件无法直接修改父组件中的数据。
但我们常常会遇到需要在子组件中修改父组件数据的场景。.sync修饰符就可以帮助我们实现这种功能。

注意:this.$emit()中update后的字段要与父组件中保持一致

即:使用sync修饰符与 $emit(update:xxx)时 ,驼峰法 和 - 写法都可以,而且也不需要与父组件保持一致。

vue 父子组件数据的双向绑定大法

官方文档说明

  • 所有的 prop 都使得其父子 prop 之间形成了一个 单向下行绑定
  • 父级 prop 的更新会向下流动到子组件中,但是反过来则不行
  • 2.3.0+ 新增 .sync 修饰符
  • 以 update:my-prop-name 的模式触发事件实现 上行绑定 最终实现 双向绑定
    举个栗子
    this.$emit(‘update:title‘, newTitle)

代码实现

child.vue

<template>
  <div>
      <input type="text" v-model="sonValue">
      <div> fatherValue </div>
  </div>
</template>

<script>

export default 
  props: 
    fatherValue: 
      required: true
    
  ,
  data () 
    return 
      sonValue: this.fatherValue
    
  ,
  watch: 
    sonValue (newValue, oldvalue) 
      this.$emit(update:fatherValue, newValue)
    ,
    fatherValue (newValue) 
      this.sonValue = newValue
    
  

</script>

father.vue

<template>
  <div class="hello">
    <!-- input实时改变value的值, 并且会实时改变child里的内容 -->
    <input type="text" v-model="value">
    <child :fatherValue.sync="value" ></child>
  </div>
</template>
<script>
import Child from ./Child  //引入Child子组件
export default 
  data() 
    return 
      value: ‘‘
    
  ,
  components: 
    child: Child
    

</script>

 

以上是关于Vue .sync修饰符与this.$emit(update:xxx)的主要内容,如果未能解决你的问题,请参考以下文章

[Vue].sync 修饰符

vue组件双向绑定.sync修饰符的一个坑

vue-----$emit(update:prop,'''newPropValue')

浅析Vue中的 .sync 修饰符

通过一个案例,彻底理解Vue中 sync 修饰符

vue组件之间通信 (ref v-model 与.sync修饰符) 之三