格式化代码,websocket功能完善

This commit is contained in:
2026-02-18 21:50:05 +08:00
parent 6543e2ccdd
commit b6c133952b
101 changed files with 15829 additions and 10739 deletions
+6 -7
View File
@@ -1,15 +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);
}
}
}
},
};