Skip to content

Instantly share code, notes, and snippets.

@jsdecena
Created August 31, 2019 04:49
Show Gist options
  • Save jsdecena/26ac93950616a10e4605630d7cb24b2a to your computer and use it in GitHub Desktop.
Save jsdecena/26ac93950616a10e4605630d7cb24b2a to your computer and use it in GitHub Desktop.
Update delete method
onDelete (id) {
this.posts.splice(id, 1)
localStorage.setItem('posts', JSON.stringify(this.posts))
this.success = 'Successfully deleted the post!' // add this message
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment