Last active
March 24, 2019 15:31
-
-
Save claraj/2fb29904be905133264a115d1911dba6 to your computer and use it in GitHub Desktop.
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<title></title> | |
<script src="https://unpkg.com/[email protected]/dist/vue.js"></script> | |
</head> | |
<body> | |
<div id="app"> | |
<!-- HTML template goes here --> | |
</div> | |
<script> | |
let app = new Vue({ | |
el: "#app", | |
data: { | |
}, | |
methods: { | |
} | |
}) | |
</script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment