Skip to content

Instantly share code, notes, and snippets.

@rosd89
Created June 23, 2017 15:17
Show Gist options
  • Save rosd89/10f29951dd576cb116bef934ff09fc61 to your computer and use it in GitHub Desktop.
Save rosd89/10f29951dd576cb116bef934ff09fc61 to your computer and use it in GitHub Desktop.
<div id="app">{{ message }}</div>
<script src="https://unpkg.com/vue"></script>
<script type="application/javascript">
new Vue({
el: '#app',
data: {
message: 'Hello Vue'
}
});
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment