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/fbdc166b5cf49dbcb2f2e5f8ac196840 to your computer and use it in GitHub Desktop.
Save ederchrono/fbdc166b5cf49dbcb2f2e5f8ac196840 to your computer and use it in GitHub Desktop.
// JS
new Vue({
el: '#app',
data: {
selectedItem: -1
},
methods: {
selectItem(id) {
this.selectedItem = id;
}
},
// ... the rest of our component
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment