Created
September 3, 2018 16:23
-
-
Save BojanKomazec/a7c8a4669b5fafd26fee1e98ee46fb8c 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
<html> | |
<body> | |
<div id="example"> | |
<p>{{ hello }}</p> | |
</div> | |
<script src="https://unpkg.com/vue"></script> | |
<script> | |
new Vue({ | |
el: '#example', | |
data: { hello: 'Hello World!'} | |
}) | |
</script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment