Skip to content

Instantly share code, notes, and snippets.

@BojanKomazec
Created September 3, 2018 16:23
Show Gist options
  • Save BojanKomazec/a7c8a4669b5fafd26fee1e98ee46fb8c to your computer and use it in GitHub Desktop.
Save BojanKomazec/a7c8a4669b5fafd26fee1e98ee46fb8c to your computer and use it in GitHub Desktop.
<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