优化更新

This commit is contained in:
2026-01-23 22:05:09 +08:00
parent 8283555457
commit 0608f0febb
14 changed files with 667 additions and 622 deletions

View File

@@ -1,4 +1,5 @@
import * as AIcons from '@ant-design/icons-vue'
import * as ElementPlusIconsVue from '@element-plus/icons-vue'
export default {
install(app) {
@@ -6,5 +7,9 @@ export default {
for (let icon in AIcons) {
app.component(`${icon}`, AIcons[icon])
}
for (const [key, component] of Object.entries(ElementPlusIconsVue)) {
app.component(`El${key}`, component)
}
}
}