Last active
July 20, 2017 20:29
-
-
Save rdegges/ee88c9dcd6b2904cb56f616e986f0cd0 to your computer and use it in GitHub Desktop.
A basic Vue page.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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