mirror of
https://github.com/halo-dev/halo.git
synced 2025-12-20 16:44:38 +08:00
#### What type of PR is this? /area ui /kind api-change /milestone 2.22.x #### What this PR does / why we need it: See #7925 #### Which issue(s) this PR fixes: Fixes #7925 #### Special notes for your reviewer: #### Does this PR introduce a user-facing change? ```release-note 将 `@halo-dev/console-shared` 重命名为 `@halo-dev/ui-shared` ```
30 lines
539 B
TypeScript
30 lines
539 B
TypeScript
import type { MenuGroupType } from "@halo-dev/ui-shared";
|
|
|
|
export const coreMenuGroups: MenuGroupType[] = [
|
|
{
|
|
id: "dashboard",
|
|
name: undefined,
|
|
priority: 0,
|
|
},
|
|
{
|
|
id: "content",
|
|
name: "core.sidebar.menu.groups.content",
|
|
priority: 1,
|
|
},
|
|
{
|
|
id: "interface",
|
|
name: "core.sidebar.menu.groups.interface",
|
|
priority: 2,
|
|
},
|
|
{
|
|
id: "system",
|
|
name: "core.sidebar.menu.groups.system",
|
|
priority: 3,
|
|
},
|
|
{
|
|
id: "tool",
|
|
name: "core.sidebar.menu.groups.tool",
|
|
priority: 4,
|
|
},
|
|
];
|