使用vue下拉选择选项

时间:2019-07-05 15:19:46

标签: vue.js vuejs2

当用户键入文本<option>时,我正在尝试将<select>的{​​{1}}下拉。这是我尝试过的方法,但是<input>不会下拉。

index.html

<options>

index.js

<input @input="onInput" type="text"/>
<select ref="select">
    <option>test</option>
</select>

1 个答案:

答案 0 :(得分:0)

这是不可能的,请参阅以下stackoverflow主题。

How can you programmatically tell an HTML SELECT to drop down (for example, due to mouseover)?

就像鼠标悬停或任何事件一样,在任何现代浏览器中都无法做到这一点。 与VueJS无关