Skip to content

Instantly share code, notes, and snippets.

@schmich
Last active June 28, 2018 19:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save schmich/85b77e5484c8c8827b6c35b72f18cd6a to your computer and use it in GitHub Desktop.
Save schmich/85b77e5484c8c8827b6c35b72f18cd6a to your computer and use it in GitHub Desktop.
Vue quick prototyping template
<!DOCTYPE html>
<html>
<head>
<script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script>
<style>
</style>
</head>
<body>
<div id="app">
</div>
<script>
const app = new Vue({
data() {
return {
};
},
mounted() {
},
methods: {
},
el: '#app'
});
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment