Skip to content

Instantly share code, notes, and snippets.

@artlili
Created May 15, 2019 20: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 artlili/83d7616c9783e81aa4e4b8bda6878754 to your computer and use it in GitHub Desktop.
Save artlili/83d7616c9783e81aa4e4b8bda6878754 to your computer and use it in GitHub Desktop.
delete item in list
v-for="(event, index) in events"
...
<button ... @click="deleteEvent(index)"
deleteEvent: function(index) {
this.events.splice(index, 1);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment