Created
August 31, 2019 04:49
-
-
Save jsdecena/26ac93950616a10e4605630d7cb24b2a to your computer and use it in GitHub Desktop.
Update delete method
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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