mirror of https://github.com/halo-dev/halo
34 lines
837 B
TypeScript
34 lines
837 B
TypeScript
import { definePlugin } from "@halo-dev/console-shared";
|
|
import BasicLayout from "@console/layouts/BasicLayout.vue";
|
|
import Menus from "./Menus.vue";
|
|
import { IconListSettings } from "@halo-dev/components";
|
|
import { markRaw } from "vue";
|
|
|
|
export default definePlugin({
|
|
components: {},
|
|
routes: [
|
|
{
|
|
path: "/menus",
|
|
component: BasicLayout,
|
|
children: [
|
|
{
|
|
path: "",
|
|
name: "Menus",
|
|
component: Menus,
|
|
meta: {
|
|
title: "core.menu.title",
|
|
searchable: true,
|
|
permissions: ["system:menus:view"],
|
|
menu: {
|
|
name: "core.sidebar.menu.items.menus",
|
|
group: "interface",
|
|
icon: markRaw(IconListSettings),
|
|
priority: 1,
|
|
},
|
|
},
|
|
},
|
|
],
|
|
},
|
|
],
|
|
});
|