vue中事件绑定函数加括号和不加括号的区别

html代码

js代码

new Vue({
  el: '#example-2',
  data(){
    return {

    }
  },
  methods: {
  	test(id){
  		console.log(id);
  	}
  }
})

不添加括号

你可能感兴趣的:(vue)