Skip to content

Instantly share code, notes, and snippets.

@ederchrono
Last active April 24, 2019 15:40
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/e01d684f2c314f7c6448fb4e6220df98 to your computer and use it in GitHub Desktop.
Save ederchrono/e01d684f2c314f7c6448fb4e6220df98 to your computer and use it in GitHub Desktop.
// JS inside methods
selectItem(id) {
this.selectedItem = id;
this.menuItems.forEach((item, index) => {
const direction = item.selected ? LEFT : RIGHT;
this.animateChars(index, item.label.length, direction);
})
},
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment