2024-01-24 13:40:15 +00:00
|
|
|
import { createApp } from 'vue';
|
|
|
|
import ArcoVueIcon from '@arco-design/web-vue/es/icon';
|
|
|
|
import globalComponents from '@/components';
|
|
|
|
import router from './router';
|
|
|
|
import store from './store';
|
|
|
|
import i18n from './locale';
|
|
|
|
import directive from './directive';
|
|
|
|
import './mock';
|
|
|
|
import App from './App.vue';
|
|
|
|
// Styles are imported via arco-plugin. See config/plugin/arcoStyleImport.ts in the directory for details
|
|
|
|
// 样式通过 arco-plugin 插件导入。详见目录文件 config/plugin/arcoStyleImport.ts
|
|
|
|
// https://arco.design/docs/designlab/use-theme-package
|
|
|
|
import '@/assets/style/global.less';
|
|
|
|
import '@/api/interceptor';
|
2024-02-02 05:23:07 +00:00
|
|
|
import 'tdesign-vue-next/es/style/index.css';
|
2024-01-24 13:40:15 +00:00
|
|
|
|
|
|
|
const app = createApp(App);
|
|
|
|
|
|
|
|
app.use(ArcoVueIcon);
|
|
|
|
|
|
|
|
app.use(router);
|
|
|
|
app.use(store);
|
|
|
|
app.use(i18n);
|
|
|
|
app.use(globalComponents);
|
|
|
|
app.use(directive);
|
|
|
|
|
|
|
|
app.mount('#app');
|