Created
March 31, 2017 17:33
-
-
Save thulioph/bdc337839a6b2853b9a3100cb4e6ef8f to your computer and use it in GitHub Desktop.
Post sobre o Vuejs.
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
| <template> | |
| <div> | |
| <h4>{{ address }}</h4> | |
| </div> | |
| </template> | |
| <script> | |
| export default { | |
| props: { | |
| address: { | |
| type: String, | |
| required: true | |
| } | |
| }, | |
| data() { | |
| return { | |
| address: '' | |
| }; | |
| } | |
| }; | |
| </script> | |
| <style></style> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment