vue 提取当前的dom元素的文字

152 阅读1分钟
v-on:click="showVal($event)"

showVal($event){
 console.log($event.target.innerText) 
}