Last active
June 12, 2019 11:16
-
-
Save Markvandersteen/e4ce9b1af3d28808ee48f1a083d73220 to your computer and use it in GitHub Desktop.
one way data flow vue props and data
This file contains 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
props: ['initialCounter'], | |
data: function () { | |
return { | |
counter: this.initialCounter | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment