Created
July 20, 2018 06:41
-
-
Save stardigits/87a29a5c9da0ff0cde3a6233a3ead88c to your computer and use it in GitHub Desktop.
my-vuejs-gist
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
<html> | |
<head> | |
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/vue.js"></script> | |
<link rel="stylesheet" href="https://unpkg.com/chota@latest"> | |
</head> | |
<body> | |
<div id="app"> | |
</div> | |
</body> | |
<script> | |
new Vue({ | |
el: '#app', | |
data: { | |
message: 'Hello World!', | |
} | |
}) | |
</script> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment