<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)