// 模块元数据 -- 共享记事本(白板)页签 // requiresAlive 指向存活探针 URL:启动时探测,服务不可达则隐藏该页签。 // 删除本目录即可移除此页签,其余模块不受影响。 import { healthUrl } from '../../config/app.config.js' export default { id: 'whiteboard', tabKey: 'tabs.whiteboard', order: 2, // 存活探针 URL;useProjects 启动时探测一次,挂掉则不显示页签 requiresAlive: healthUrl('whiteboard'), // 接受 /whiteboard/:boardId 子路径,使直链访问能预填白板 id param: 'boardId', // 懒加载组件 -> 独立 chunk component: () => import('./Whiteboard.vue') }