Created
July 17, 2020 13:25
-
-
Save benvp/5e425592347beb95e458c6f4517496c8 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 { | |
// ... | |
focus: 0, | |
setFocus(f) { | |
this.focus = f; | |
}, | |
// ... | |
} | |
} | |
</script> | |
<!-- | |
Add the following two attributes to the <li> suggestion item | |
--> | |
<li | |
@mouseenter="setFocus(<%= index %>)" | |
:class="{ 'focus': focus === <%= index %> }" | |
/> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment