Created
September 3, 2018 17:16
-
-
Save BojanKomazec/8b84c44e61ce40c33c4a22619d17f78f 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> | |
let vm = 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