这里的child-say是指定的不能更改父组件<component-av-on:child-say="listenToMyBoy"></component-a><p>Doyoulikeme?

这里的child-say 是指定的不能更改
父组件
<component-a v-on:child-say="listenToMyBoy"></component-a>
<p>Do you like me? {{childWords}}</p>
methods: {
listenToMyBoy: function (somedata){
this.childWords = somedata
}
}
子组件
<button v-on:click="onClickMe">like!</button>methods: { onClickMe: function(){ this.$emit('child-say',this.somedata); } }
