1. 程式人生 > >vue 子組件向父組件傳值

vue 子組件向父組件傳值

data cti list ike words eth com dword on()

父組件這麽寫
<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 子組件向父組件傳值