fix: 移除eslint功能

This commit is contained in:
2026-04-10 15:50:05 +08:00
parent c07f2c8dbe
commit 5607d07586
10 changed files with 223 additions and 91 deletions

View File

@@ -7,6 +7,7 @@ import router from './router';
import App from './App.vue';
import './style.css';
import AppIcon from './components/base/AppIcon.vue';
import LucideIcon from './components/base/LucideIcon.vue';
const app = createApp(App);
// 注册所有 Element Plus 图标
@@ -16,6 +17,7 @@ for (const [key, component] of Object.entries(ElementPlusIconsVue)) {
// 注册自定义图标组件
app.component('AppIcon', AppIcon);
app.component('LucideIcon', LucideIcon);
app.use(createPinia());
app.use(router);
app.use(ElementPlus);