mirror of
https://gitee.com/dromara/mayfly-go
synced 2026-03-20 17:05:41 +08:00
40 lines
1.1 KiB
TypeScript
40 lines
1.1 KiB
TypeScript
import { createApp } from 'vue';
|
|
import App from '@/App.vue';
|
|
|
|
import router from './router';
|
|
import pinia from '@/store/index';
|
|
import { directive } from '@/directive/index';
|
|
import { globalComponentSize } from '@/common/utils/componentSize';
|
|
import { registElSvgIcon } from '@/common/utils/svgIcons';
|
|
|
|
import ElementPlus from 'element-plus';
|
|
import 'element-plus/dist/index.css';
|
|
import 'element-plus/theme-chalk/dark/css-vars.css';
|
|
import zhCn from 'element-plus/es/locale/lang/zh-cn';
|
|
import { ElMessage } from 'element-plus';
|
|
|
|
import 'splitpanes/dist/splitpanes.css';
|
|
|
|
import '@/theme/index.scss';
|
|
import '@/assets/font/font.css';
|
|
import '@/assets/iconfont/iconfont.js';
|
|
|
|
const app = createApp(App);
|
|
|
|
registElSvgIcon(app);
|
|
directive(app);
|
|
|
|
app.use(pinia).use(router).use(ElementPlus, { size: globalComponentSize, locale: zhCn }).mount('#app');
|
|
|
|
// 屏蔽警告信息
|
|
app.config.warnHandler = () => null;
|
|
// 全局error处理
|
|
app.config.errorHandler = function (err: any, vm, info) {
|
|
// 如果是断言错误,则进行提示即可
|
|
if (err.name == 'AssertError') {
|
|
ElMessage.error(err.message);
|
|
} else {
|
|
console.error(err, info);
|
|
}
|
|
};
|