// Vue库 第三方库 import Vue from 'vue' // 跟页面 import App from './App.vue' // 路由 import router from './router' // vueX状态库 import store from './store' import {mixin} from './utils/mixin' // 规避开发包错 Vue.config.productionTip = false // 全局引入mixin Vue.mixin(mixin) // 实例化Vue new Vue({ router, store, render: h => h(App) }).$mount('#app')