mirror of https://github.com/halo-dev/halo
35 lines
851 B
TypeScript
35 lines
851 B
TypeScript
import BasicLayout from "@console/layouts/BasicLayout.vue";
|
|
import { IconTerminalBoxLine } from "@halo-dev/components";
|
|
import { definePlugin } from "@halo-dev/console-shared";
|
|
import { markRaw } from "vue";
|
|
import Overview from "./Overview.vue";
|
|
|
|
export default definePlugin({
|
|
components: {},
|
|
routes: [
|
|
{
|
|
path: "/overview",
|
|
name: "OverviewRoot",
|
|
component: BasicLayout,
|
|
meta: {
|
|
title: "core.overview.title",
|
|
searchable: true,
|
|
permissions: ["system:actuator:manage"],
|
|
menu: {
|
|
name: "core.sidebar.menu.items.overview",
|
|
group: "system",
|
|
icon: markRaw(IconTerminalBoxLine),
|
|
priority: 3,
|
|
},
|
|
},
|
|
children: [
|
|
{
|
|
path: "",
|
|
name: "Overview",
|
|
component: Overview,
|
|
},
|
|
],
|
|
},
|
|
],
|
|
});
|