I'm trying to drop-down the <option>
s for a <select>
when the user types into a text <input>
. Here's what I've tried, but the <options>
don't drop-down.
index.html
<input @input="onInput" type="text"/>
<select ref="select">
<option>test</option>
</select>
index.js
new Vue({
...methods: {
onInput() {
this.$refs.select.click()
}
}
})