我知道2种方式:
1.在标签内 使用 ref 属性定义对象名,使用this.$refs.【name】 调用
2.在标签内 使用 函数传递事件对象,
定义,
<div @click="handleFunc($event)" ></div>
使用,
<script>
function handleFunc(e){
console.log(e.target)
}
</script>
原文:https://www.cnblogs.com/enoch-psalms/p/enoch.html