app.js
329 Bytes
import Vue from 'vue';
import App from './app.vue';
import {createRouter} from './router';
import {createStore} from './store';
import pluginCore from './plugins/core';
Vue.use(pluginCore);
const router = createRouter();
const store = createStore();
new Vue({
router,
store,
render: h => h(App),
el: '#app'
});