父组件中有子组件
msg 为父组件向子组件传的内容,
子组件向父组件传参数
子组件:this.$emit("shownumber",[this.num]);//this.$emit(event,[要传的参数]) 当有多个参数时,以逗号分开,例如: this.$emit("shownumber",[this.num,'1','2']);
父组件:
<first msg="父组件recode向子组件first传消息" v-on:shownumber="shownum"></first>
用v-on监听子组件传过来的事件, 就可以得到传的参数。