Created
March 21, 2018 07:53
-
-
Save Riduidel/4eaa7f3a3c95b58d54aaf60e7b82eaed to your computer and use it in GitHub Desktop.
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 lang="en"> | |
| <meta> | |
| <meta charset="UTF-8"> | |
| <title>Hello World in Vue.js</title> | |
| </meta> | |
| <body> | |
| <div id="hello-world-app"> | |
| <h1>{{ msg }}</h1> | |
| </div> | |
| <script | |
| src="//cdnjs.cloudflare.com/ajax/libs/vue/2.1.6/vue.min.js"> | |
| </script> | |
| <script> | |
| new Vue({ | |
| el: "#hello-world-app", | |
| data() { | |
| return { | |
| msg: "Hello World!" | |
| } | |
| } | |
| }); | |
| </script> | |
| </body> | |
| </html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment