Created
July 17, 2020 13:40
-
-
Save benvp/8ae077a93e5c6890c40bde86a3182c81 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script> | |
function autocomplete() { | |
return { | |
// ... | |
select() { | |
this.$refs[`item-${this.focus}`]?.click(); | |
this.focusPrev(); | |
}, | |
// ... | |
} | |
} | |
</script> | |
<!-- | |
add the following attribute to | |
the autocomplete container div | |
--> | |
<div x-on:keydown.enter="select()" /> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment