Last active
April 20, 2017 19:08
-
-
Save thulioph/1f8cd51298dbc2d8c0a41a2c29a3172f to your computer and use it in GitHub Desktop.
Post about the 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 id="app"> | |
| <h1>{{message}}</h1> | |
| </div> | |
| </template> | |
| <script> | |
| export default { | |
| data() { | |
| return { | |
| message: 'Hello World!', | |
| }; | |
| } | |
| }; | |
| </script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment