加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
index.ts 913 Bytes
一键复制 编辑 原始数据 按行查看 历史
leooneone 提交于 2023-10-12 09:53 . 日常更新
// install.js
import * as svg from '@element-plus/icons-vue'
import 'virtual:svg-icons-register'
import globalProperties from './src/globalProperties'
/**
* 导出全局注册 element plus svg 图标
* @param app vue 实例
* @description 使用:https://element-plus.gitee.io/zh-CN/component/icon.html
*/
function elSvg(app) {
const icons = svg
for (const i in icons) {
app.component(`${icons[i].name}`, icons[i])
}
}
const myComs = import.meta.globEager('./src/packages/Ai*/index.vue')
const AiForm = {
install(app) {
///注册全局属性
app.use(globalProperties)
///注册elment icon
elSvg(app)
for (const path in myComs) {
let cname = myComs[path].default.name
app.component(cname, myComs[path].default)
}
},
};
export default AiForm;
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化