Skip to content

Instantly share code, notes, and snippets.

@rdegges
Created July 20, 2017 20:36
Show Gist options
  • Save rdegges/4faf7d327e81f9407b3fc548226a629c to your computer and use it in GitHub Desktop.
Save rdegges/4faf7d327e81f9407b3fc548226a629c to your computer and use it in GitHub Desktop.
A simple hello world example in Vue.js.
<html>
<body>
<div id="app">
<h1>{{ message }}</h1>
</div>
<script src="https://unpkg.com/vue"></script>
<script>
let app = new Vue({
el: "#app",
data: {
message: "Hi!"
}
});
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment