$emit触发这个事件
this.$emit('getParam','name')//this.$emit('自定义事件名','要传送的数据')
我们可以用$on方法监听一个事件,并且指定事件的处理方法,
this.$on('getParam',this.handleParam)//this.$on('自定义事件名',处理方法)
也可以
<my-component v-on:自定义事件名="处理方法"></my-component>
扫描二维码,在手机上阅读!
$emit触发这个事件
this.$emit('getParam','name')//this.$emit('自定义事件名','要传送的数据')
我们可以用$on方法监听一个事件,并且指定事件的处理方法,
this.$on('getParam',this.handleParam)//this.$on('自定义事件名',处理方法)
也可以
<my-component v-on:自定义事件名="处理方法"></my-component>
评论