vue 父子組件數據的雙向綁定大法

官方文檔說明

  • 全部的 prop 都使得其父子 prop 之間造成了一個 單向下行綁定
  • 父級 prop 的更新會向下流動到子組件中,可是反過來則不行
  • 2.3.0+ 新增 .sync 修飾符
  • 以 update:my-prop-name 的模式觸發事件實現 上行綁定 最終實現 雙向綁定
    舉個栗子
    this.$emit('update:title', newTitle)

代碼實現

child.vuevue

<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.vueui

<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>
相關文章
相關標籤/搜索