2024-06-26 12:21:16 +08:00

25 lines
576 B
Vue
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import Vue from 'vue'
import App from './App'
import store from './store'
import router from './router'
import './plugins'
import '@/layouts/export'
/**
* @author https://github.com/zxwk1998/vue-admin-better 不想保留author可删除
* @description 生产环境默认都使用mock如果正式用于生产环境时记得去掉
*/
if (process.env.NODE_ENV === 'production') {
const { mockXHR } = require('@/utils/static')
mockXHR()
}
Vue.config.productionTip = false
new Vue({
el: '#vue-admin-beautiful',
router,
store,
render: (h) => h(App),
})