仪表盘
版本库
文件存储
活动
搜索
登录
main
/
lbqms-ui
兰宝车间质量管理系统-前端
概况
操作记录
提交次数
目录
文档
分支
对比
blame
|
历史
|
原始文档
!20 统一登录授权 * 统一授权登录 * 对接后端更改做了适配, * 前端实现切换租户选择第三方授权登录,和优化第三方页面登录注册
三个三
2023-07-02
a8f575fe6f4440ca62bb2ad850bbc0baf77ded5d
[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);
}
}
};