1. All other components are fine, but the click event in this .vue file is not valid
2 binding click events to any of the elements in this .vue file is not valid
3.item.k can be rendered successfully
<div class="shortcut-wrapper">
<div class="shortcut">
<div class="hot-key">
<h1 class="title"></h1>
<ul>
<li class=item v-for="(item,index) in hotkey" :key=index @click="addQuery(item.k)"><span>{{item.k }}</span></li>
</ul>
</div>
</div>
</div>
methods: {
addQuery (quey) {
console.log("success")
}
},