前端代码格式化

This commit is contained in:
2026-02-19 11:46:27 +08:00
parent d310a29c03
commit f0f0763ceb
101 changed files with 8952 additions and 13203 deletions
+5 -5
View File
@@ -1,14 +1,14 @@
import * as AIcons from "@ant-design/icons-vue";
import * as ElementPlusIconsVue from "@element-plus/icons-vue";
import * as AIcons from '@ant-design/icons-vue'
import * as ElementPlusIconsVue from '@element-plus/icons-vue'
export default {
install(app) {
for (let icon in AIcons) {
app.component(`${icon}`, AIcons[icon]);
app.component(`${icon}`, AIcons[icon])
}
for (const [key, component] of Object.entries(ElementPlusIconsVue)) {
app.component(`El${key}`, component);
app.component(`El${key}`, component)
}
},
};
}