17 lines
315 B
JavaScript
17 lines
315 B
JavaScript
import Vue from 'vue'
|
|
import './plugins/vuetify'
|
|
import App from './App.vue'
|
|
import router from './router'
|
|
import VueResource from 'vue-resource'
|
|
import {store} from './store/store'
|
|
|
|
Vue.use(VueResource)
|
|
|
|
Vue.config.productionTip = false
|
|
|
|
new Vue({
|
|
router,
|
|
store: store,
|
|
render: h => h(App)
|
|
}).$mount('#app')
|