zookeeper python接口实例详解
241
2023-02-16
vue使用$emit时,父组件无法监听到子组件的事件实例
vue使用$emit时,父组件无法监听到子组件的事件的原因是$emit传入的事件名称只能使用小写,不能使用大写的驼峰规则命名
{{ total }}
Vue.component('button-counter', {
template: '',
data: function () {
return {
counter: 0
}
},
methods: {
increment: function () {
this.counter += 1
this.$emit('ee', this.counter);//有效
this.$emit('eEvent'http://, this.counter);//无效,不能使用大写的驼峰规则命名
}
},
})
new Vue({
el: '#counter-event-example',
data: {
total: '点击下面的按钮'
},
methods: {
incrementTotal: function (b) {
this.total = b;
}
}
})
版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。
发表评论
暂时没有评论,来抢沙发吧~