当输入获得/失去焦点时,是否可以更改模型中的值?
这里的用例是一个搜索输入,显示输入时的结果,这些结果仅在焦点位于搜索框上时才显示。
这是我到目前为止的内容:
<input type="search" v-model="query">
<div class="results-as-you-type" v-if="magic_flag"> ... </div>
接着,
new Vue({
el: '#search_wrapper',
data: {
query: '',
magic_flag: false
}
});
这里的想法是magic_flag
应该转向true
搜索框具有焦点时。我可以手动执行此操作(例如,使用jQuery),但是我想要一个纯Vue.JS解决方案。
用户将鼠标悬停在输入上时,您可能还想激活搜索-@mouseover = ...
Another approach to this kind of functionality is that the filter input is always active, even when the mouse is in the result list. Typing any letters modifies the filter input without changing focus. Many implementations actually show the filter input box only after a letter or number is typed.
Look into @event.capture.