add front-todofeed

This commit is contained in:
elegant651
2020-03-30 11:26:28 +09:00
parent 3face74a64
commit dd3033be9c
26 changed files with 1139 additions and 1 deletions

View File

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