如有这么一个按钮:
<el-button type="info" v-on:click="UserLogin">登陆</el-button>
绑定了UserLogin事件
methods: {
UserLogin: function (event) {
console.log("触发")
}
}
然后并没有触发,但是如果放一个普通的button按钮就会触发,这是为何?
自定义组件如果要触发dom事件的话,需要加native修饰符。
Most helpful comment
64