美文网首页
父子组件传值

父子组件传值

作者: Eternal丶星空 | 来源:发表于2018-03-25 01:23 被阅读15次

子组件注册触发事件,父组件注册 触发子组件事件后的方法写在method里面
父组件这么写

    <component-a  v-on:child-say="listenToMyBoy"></component-a>
      <p>Do you like me? {{childWords}}</p>
      methods: {
        listenToMyBoy: function (somedata){
          this.childWords = somedata
        }
    }

子组件component-a这么写

 <button v-on:click="onClickMe">like!</button>

 methods: {
      onClickMe: function(){
      this.$emit('child-say',this.somedata);
  }
}

相关文章

网友评论

      本文标题:父子组件传值

      本文链接:https://www.haomeiwen.com/subject/przccftx.html