Skip to content

Instantly share code, notes, and snippets.

@jsdecena
Created August 31, 2019 04:42
Show Gist options
  • Save jsdecena/69f53346b5a3bca5840522280a9e3319 to your computer and use it in GitHub Desktop.
Save jsdecena/69f53346b5a3bca5840522280a9e3319 to your computer and use it in GitHub Desktop.
Delete method JS
methods: {
....
onDelete (id) {
this.posts.splice(id, 1)
localStorage.setItem('posts', JSON.stringify(this.posts))
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment