Skip to content

Instantly share code, notes, and snippets.

@codemwnci
Created August 25, 2017 21:25
Show Gist options
  • Save codemwnci/72c5df4e78c7753f6fc79ec3969b45bb to your computer and use it in GitHub Desktop.
Save codemwnci/72c5df4e78c7753f6fc79ec3969b45bb to your computer and use it in GitHub Desktop.
VueJS Setup
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>VueJS / Kotlin ToDo App</title>
<script src="https://unpkg.com/axios/dist/axios.min.js"></script>
<script src="https://unpkg.com/vue"></script>
</head>
<body>
<div id="app">
</div>
<script>
var app = new Vue({
el: '#app',
data: {
},
methods: {
},
mounted() {
}
})
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment