Skip to content

Instantly share code, notes, and snippets.

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