Vue.js 使用 $emit 触发事件填坑

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(&#x27;onIncr&#x27;)改为this. emit(onIncr)this.emit(‘onincr’)

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值