重命名CubeListPager和CubeListToolbarSearch
Yann authored at 2025-07-28 22:53:20 Yann committed at 2025-07-28 23:04:14
503.00 B
cube-front
import { initApp } from './initApp';
import TopMenuLayout from './layouts/TopMenu/index.vue';
import { registerLayout } from './composables/useLayout';

// 注册内置布局(可在应用层继续 registerLayout 添加更多)
registerLayout({
  id: 'top-menu',
  label: '顶部菜单',
  icon: '⊟',
  description: '顶部导航栏 + 内容区布局',
  component: TopMenuLayout,
});

initApp((app) => {
  // 应用初始化回调,可在此注册更多布局或进行其他配置
  void app;
});