仪表盘
版本库
文件存储
活动
搜索
登录
main
/
lbqms-ui
兰宝车间质量管理系统-前端
概况
操作记录
提交次数
目录
文档
分支
对比
blame
|
历史
|
原始文档
!63 关闭动态路由tab页签时不清理组件缓存 * 动态路由页面关闭时不清理组件缓存,避免清理已打开的多个路由页面缓存
NickLuo
2023-12-13
58d7e50de3432a4772ec0749661ec1f51c9c6086
[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);
}
}
};