我在控制台得到一个“非法调用”错误。当我点击搜索图标
'focus' called on an object that does not implement interface HTMLElement.
有时我会犯这个错误。
<div class="search-wrap">
<input
ref="searchInput"
v-model="searchData"
type="text"
class="form-control search-input not-as-small"
placeholder="Search by name"
@input="inputSearchValue"
>
<i
class="search-strong search-input-icon"
@click.prevent="$refs.searchInput.focus"
/>
</div>
1条答案
按热度按时间a2mppw5e1#
应该是
$refs.searchInput.focus()
而不是应该是$refs.searchInput.focus
现场演示**:**