refactor: Upgrade to Fusebox 2.0

This commit is contained in:
NGPixel
2017-05-04 22:41:33 -04:00
parent 3e1c4a086c
commit 3fa941ce19
7 changed files with 149 additions and 51 deletions

View File

@@ -0,0 +1,17 @@
<template>
<div>
<p>{{ msg }}</p>
<input type="text" v-model="msg" />
</div>
</template>
<script>
export default {
name: 'app',
data () {
return {
msg: 'Welcome to Your Vue.js App'
}
}
}
</script>