代码如下
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吗?
Smart猫小萌
喵喔喔
随时随地看视频慕课网APP
相关分类