PracowniaProgramowania/frontend/app/src/main.js

17 lines
315 B
JavaScript
Raw Normal View History

2018-11-07 02:03:15 +01:00
import Vue from 'vue'
2019-01-05 13:02:41 +01:00
import './plugins/vuetify'
import App from './App.vue'
2018-11-07 02:03:15 +01:00
import router from './router'
2019-01-08 03:30:47 +01:00
import VueResource from 'vue-resource'
2019-01-05 15:36:36 +01:00
import {store} from './store/store'
2018-11-09 23:30:49 +01:00
2019-01-08 03:30:47 +01:00
Vue.use(VueResource)
2018-11-07 02:03:15 +01:00
Vue.config.productionTip = false
new Vue({
router,
2019-01-05 15:36:36 +01:00
store: store,
2019-01-05 13:02:41 +01:00
render: h => h(App)
}).$mount('#app')