【Vue】組件watch props屬性值

#HTML
<
div id="example"> <p> <child :msg="msg"></child> </p> <p> <button @click='props'>改變props</button> </p> </div>
#JS
Vue.component('child', {
  props: ['msg'],
  computed: {
    value:{
      get:function(){
        return this.msg
      },
      set:function(value){
        this.msg = value;
      }
    }
  },
  watch:{
      msg:function(val,oldval){
      this.value='改變子組件msg';
    }
  },
  template: '<span>{{ value }}</span>'
})

var vm=new Vue({
    el:'#example',
  data:function(){
      return{
        msg:'默認子組件msg'
    }
  },
  methods:{
        props:function(){
        this.$set('msg','2');
    }
  }
})

代碼: https://jsfiddle.net/kakarrot2009/ebeqhr6x/this

相關文章
相關標籤/搜索