欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

vue @click 绑定的函数,如何同时传入事件对象和自定义参数

程序员文章站 2022-06-07 14:15:08
...

1、仅仅传入自定义参数

html :

<div id="app">
  <button @click="tm(123)">ddddd</button>
</div>

 js :

new Vue({
    el:'#app',
  methods:{
      tm:function(e){
        console.log(e);
    }
  }
})

则将会输出数字123

2、仅仅传入事件对象

html:

<div id="app">
  <button @click="tm">ddddd</button>
</div>

 js :

new Vue({
    el:'#app',
  methods:{
      tm:function(e){
        console.log(e);
    }
  }
})

则将会输入事件对象

3、同时传入事件对象和自定义参数

html:

<div id="app">
  <button @click="tm($event,123)">ddddd</button>
</div>

 js :

new Vue({
    el:'#app',
  methods:{
      tm:function(e,value){
        console.log(e);
        console.log(value);
    }
  }
})

则将会输入事件对象

参考链接:

https://segmentfault.com/q/1010000010054474

 https://segmentfault.com/q/1010000008783546/a-1020000008784289

 

相关标签: vue 事件绑定