mirror of
https://github.com/vbenjs/vue-vben-admin.git
synced 2025-01-24 18:40:22 +08:00
50 lines
1.2 KiB
TypeScript
50 lines
1.2 KiB
TypeScript
import { createApp } from 'vue';
|
|
import App from './App.vue';
|
|
|
|
import router, { setupRouter } from '/@/router';
|
|
import { setupStore } from '/@/store';
|
|
import { setupErrorHandle } from '/@/logics/error-handle';
|
|
import { setupGlobDirectives } from '/@/directives';
|
|
import { setupI18n } from '/@/locales/setupI18n';
|
|
import { setupProdMockServer } from '../mock/_createProductionServer';
|
|
|
|
import { registerGlobComp } from '/@/components/registerGlobComp';
|
|
|
|
import { isDevMode, isProdMode, isUseMock } from '/@/utils/env';
|
|
|
|
import '/@/design/index.less';
|
|
|
|
const app = createApp(App);
|
|
|
|
registerGlobComp(app);
|
|
|
|
// Multilingual configuration
|
|
setupI18n(app);
|
|
// Configure routing
|
|
setupRouter(app);
|
|
|
|
// Configure vuex store
|
|
setupStore(app);
|
|
|
|
// Register global directive
|
|
setupGlobDirectives(app);
|
|
|
|
// Configure global error handling
|
|
setupErrorHandle(app);
|
|
|
|
// Mount when the route is ready
|
|
router.isReady().then(() => {
|
|
app.mount('#app', true);
|
|
});
|
|
|
|
// The development environment takes effect
|
|
if (isDevMode()) {
|
|
app.config.performance = true;
|
|
window.__APP__ = app;
|
|
}
|
|
|
|
// If you do not need to setting the mock service in the production environment, you can comment the code
|
|
if (isProdMode() && isUseMock()) {
|
|
setupProdMockServer();
|
|
}
|