Last active
June 28, 2018 19:32
-
-
Save schmich/85b77e5484c8c8827b6c35b72f18cd6a to your computer and use it in GitHub Desktop.
Vue quick prototyping template
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> | |
<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