add initial cateditor vue files

This commit is contained in:
Seth Ladygo
2019-04-01 17:08:48 -07:00
parent d1aa3fa7cd
commit 4e99dcd1e0
19 changed files with 13217 additions and 0 deletions

11
cateditor/src/main.js Normal file
View File

@ -0,0 +1,11 @@
import Vue from 'vue'
import './plugins/vuetify'
import App from './App.vue'
import store from './store'
Vue.config.productionTip = false
new Vue({
store,
render: h => h(App)
}).$mount('#app')