37 lines
544 B
TypeScript
37 lines
544 B
TypeScript
export const useMain = () => {
|
|
const menus = [
|
|
{
|
|
name: '设置',
|
|
path:'/toolsSet',
|
|
key: 'toolsSet',
|
|
icon: 'briefCase'
|
|
},
|
|
{
|
|
name: '已归档对话',
|
|
path:'/workspace/knowledge',
|
|
key: 'knowledge',
|
|
icon: 'book'
|
|
},
|
|
{
|
|
name: '管理员面板',
|
|
path:'/fileManagementSet',
|
|
key: 'fileManagementSet',
|
|
icon: 'file'
|
|
},
|
|
]
|
|
|
|
const operateMenus = [
|
|
{
|
|
name: '退出登录',
|
|
path:'/login',
|
|
key: 'login',
|
|
icon: 'briefCase'
|
|
}
|
|
]
|
|
|
|
return {
|
|
menus,
|
|
operateMenus
|
|
}
|
|
}
|