mirror of
https://github.com/cool-team-official/cool-admin-vue.git
synced 2025-12-12 05:32:48 +00:00
16 lines
255 B
TypeScript
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"
|
|
}
|
|
};
|
|
};
|