码迷,mamicode.com
首页 > 其他好文 > 详细

【Vue】组件watch props属性值

时间:2018-04-29 23:58:59      阅读:1522      评论:0      收藏:0      [点我收藏+]

标签:div   https   UNC   ref   ted   button   jsf   href   ddl   

#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/

 

【Vue】组件watch props属性值

标签:div   https   UNC   ref   ted   button   jsf   href   ddl   

原文地址:https://www.cnblogs.com/mqxs/p/8972368.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!