From 6a02437da5ca1fd368bae48622589f6f359bff95 Mon Sep 17 00:00:00 2001
From: chenyc <501753378@qq.com>
Date: 星期三, 09 十月 2024 09:01:04 +0800
Subject: [PATCH] 更新营养筛查评估
---
src/main.ts | 6 +++++-
1 files changed, 5 insertions(+), 1 deletions(-)
diff --git a/src/main.ts b/src/main.ts
index 4373425..e979762 100644
--- a/src/main.ts
+++ b/src/main.ts
@@ -7,11 +7,15 @@
import other from '/@/utils/other';
import ElementPlus from 'element-plus';
+import * as ElementPlusIconsVue from '@element-plus/icons-vue'
import '/@/theme/index.scss';
import VueGridLayout from 'vue-grid-layout';
const app = createApp(App);
-
+//您需要从 @element-plus/icons-vue 中导入所有图标并进行全局注册。
+for (const [key, component] of Object.entries(ElementPlusIconsVue)) {
+app.component(key, component)
+}
directive(app);
other.elSvg(app);
--
Gitblit v1.8.0