Files
Sub-Store/web/src/main.js
2020-08-23 00:56:35 +08:00

15 lines
274 B
JavaScript

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