Files
Voozik/client/src/main.js
Thomas 0ef9ba675b Init
2020-07-23 16:51:34 +02:00

14 lines
245 B
JavaScript

import Vue from 'vue'
import App from './App.vue'
import './registerServiceWorker'
import router from './router'
import store from './store'
Vue.config.productionTip = false
new Vue({
router,
store,
render: h => h(App)
}).$mount('#app')