Vue.js 使用 $emit 触发事件填坑
vue的组件内触发外部事件不起作用vue的组件内触发自定义事件(发外部事件)不起作用今天学习vue的自定义组件功能,在组件内部触发一个事件,在使用组件的地方使用v-on绑定这个事件,然而触发一直不生效,检查了很多遍的代码都没看出什么问题,代码如下:<div id="app"><button v-on:click="IncrHandle">增加</button...
vue的组件内触发外部事件不起作用
vue的组件内触发自定义事件(发外部事件)不起作用
今天学习vue的自定义组件功能,在组件内部触发一个事件,在使用组件的地方使用v-on绑定这个事件,然而触发一直不生效,检查了很多遍的代码都没看出什么问题,代码如下:
<div id="app">
<button v-on:click="IncrHandle">增加</button>
<input v-model="total" placeholder="请输入内容" />
<child v-bind:count="total" v-on:onIncr="IncrHandle"></child>
</div>
Vue.component("child",{
props:['count'],
template:"<button v-on:click='incr'>增加{{count}}</button>",
data: function(){
return {
count: 0
}
},
methods:{
incr: function(){
this.$emit('onIncr')
this.count += 1
}
}
})
new Vue({
el:"#app",
data:{
total: 0
},
methods:{
IncrHandle:function(){
this.total += 1
total("增加1")
},
DncrHandle:function(){
this.total -= 1
}
}
})
经过无数的验证,终于找到了解决办法:
保证待传递的事件名称为纯小写。不可以使用驼峰j格式。
即:将v-on:onIncr改为v-on:onincr,将this.
e
m
i
t
(
′
o
n
I
n
c
r
′
)
改
为
t
h
i
s
.
emit('onIncr')改为this.
emit(′onIncr′)改为this.emit(‘onincr’)
更多推荐
所有评论(0)