神仙都没用 433cc0595c 优化
2024-02-27 11:35:04 +08:00

16 lines
255 B
TypeScript

import type { ModuleConfig } from "/@/cool";
export default (): ModuleConfig => {
return {
toolbar: {
order: 2,
h5: false,
component: import("./components/index.vue")
},
options: {
// socket.io 连接地址
path: "/chat"
}
};
};