代码如下
html
<div id="app">
<button @click="tm">ddddd</button>
</div>
js
new Vue({
el:'#app',
methods:{
tm:function(e){
console.log(e);
}
}
})
如果要在点击事件传参数
<div id="app">
<button @click="tm(123)">ddddd</button>
</div>
那么接收了123之后还能使用event吗?
可以在函数参数中使用
$event
指定event