Add store

This commit is contained in:
2020-09-15 15:16:55 +03:00
parent 57812be1fd
commit 5d33377a50
10 changed files with 108 additions and 16 deletions

View File

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