仪表盘
版本库
文件存储
活动
搜索
登录
main
/
lbqms-ui
兰宝车间质量管理系统-前端
概况
操作记录
提交次数
目录
文档
分支
对比
blame
|
历史
|
原始文档
🎀发布 vue 版本 5.2.3 与 cloud 版本 2.2.2
疯狂的狮子Li
2024-10-25
28a81f2e44c66003d1ac57387b0ee6074baf93af
[lbqms-ui.git]
/
src
/
plugins
/
svgicon.ts
1
2
3
4
5
6
7
8
9
10
import * as ElementPlusIconsVue from '@element-plus/icons-vue';
import { App } from 'vue';
export default {
install: (app: App) => {
for (const [key, component] of Object.entries(ElementPlusIconsVue)) {
app.component(key, component);
}
}
};