Created
March 17, 2019 15:00
-
-
Save earth774/2d5cb1105e62d73697f1df99003e6023 to your computer and use it in GitHub Desktop.
vue Declarative Rendering
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
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <title>Amiearth</title> | |
| <script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script> | |
| </head> | |
| <body> | |
| <div id="app"> {{ message }} </div> | |
| <script> | |
| var app = new Vue({ | |
| el: '#app', | |
| data: { message: 'Hello Vue!' } | |
| }) | |
| </script> | |
| </body> | |
| </html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment