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

vue 子组件向父组件传值

时间:2017-12-06 18:17:47      阅读:203      评论:0      收藏:0      [点我收藏+]

标签:col   you   method   listen   methods   like   fun   cli   onclick   

父组件这么写
<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);

      }

 

vue 子组件向父组件传值

标签:col   you   method   listen   methods   like   fun   cli   onclick   

原文地址:http://www.cnblogs.com/wangzhichao/p/7993163.html

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