Я пытаюсь раскрыть <option>
s для <select>
, когда пользователь вводит текст <input>
. Вот что я пробовал, но <options>
не выпадающий.
index.html
<input @input="onInput" type="text"/>
<select ref="select">
<option>test</option>
</select>
index.js
new Vue({
...methods: {
onInput() {
this.$refs.select.click()
}
}
})