<td contenteditable="true" @input="inputEvent()"></td>
需要在inputEvent()
中传入td
这个dom元素;
淡淡烟草味2017-05-19 10:13:27
<body>
<p id="app">
<button @click='add'>按钮</button>
</p>
</body>
new Vue({
el: "#app",
methods: {
add(e) {
console.log(e.target)
}
}
})
是这种意思吗??
伊谢尔伦2017-05-19 10:13:27
没有参数的话直接在接收方法中定一个event就可以了
function (event) {}
如果有其他参数,那就用inputEvent($event,other)