Created
August 31, 2019 04:42
-
-
Save jsdecena/69f53346b5a3bca5840522280a9e3319 to your computer and use it in GitHub Desktop.
Delete method JS
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
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