Skip to content

Instantly share code, notes, and snippets.

@rdegges
Last active July 20, 2017 20:29
Show Gist options
  • Save rdegges/ee88c9dcd6b2904cb56f616e986f0cd0 to your computer and use it in GitHub Desktop.
Save rdegges/ee88c9dcd6b2904cb56f616e986f0cd0 to your computer and use it in GitHub Desktop.
A basic Vue page.
<html>
<body>
<!-- All that Vue cares about is what is inside this div. -->
<div id="app">
</div>
<script src="https://unpkg.com/vue"></script>
<script>
let app = new Vue({
el: "#app"
});
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment