我试图将@click 添加到一个很棒的字体图标。但是,无论我将@click 事件添加到 span 还是 i 标记,它都不起作用。我怀疑该事件是由输入字段进行的。如何使放大镜图标可点击?
<div class="control has-icons-right">
<input v-model="keyword" @keyup.enter="findName" class="input is-large" type="text" placeholder="Input 1 word, hit Enter"/>
<!-- or 2 words separated by space -->
<span class="icon is-right" @click="findName">
<i class="fa fa-search"></i>
</span>
</div>
资料来源:3sName.com