vue中既能获取事件对象又能获取参数的方法

<button @click='a($event,value)'>

function a (e,val) {
console.log(e) //事件对象

console.log(val) //传递的参数

}

posted @ 2021-02-22 13:50  习惯xiguan  阅读(139)  评论(0编辑  收藏  举报