Vue.js里面点击事件传递了参数还能使用事件参数吗?如何使用

2025-04-22 13:27:14
推荐回答(1个)
回答1:

html




js

new Vue({
el:'#app',
methods:{
tm:function(e){
console.log(e);
}
}
})
如果要在点击事件传参数