代码如下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吗?
喵喔喔
相关分类