Skip to content

Instantly share code, notes, and snippets.

@ederchrono
Created April 20, 2019 07:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ederchrono/4feb5074f8d222c817ced4c97f94efd2 to your computer and use it in GitHub Desktop.
Save ederchrono/4feb5074f8d222c817ced4c97f94efd2 to your computer and use it in GitHub Desktop.
<!-- HTML inside nav > ul -->
<li
v-for="(item, index) in menuItems"
:key="`item-${index}`"
@mouseover="selectItem(index)"
@mouseleave="selectItem(-1)"
:class="{'selected': item.selected}"
class="menu-item"
>
{{item.label}}
</li>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment