Files
app-test-nuxt/components/layout/full/vertical-sidebar/sidebarItem.ts
2025-11-27 09:51:40 +07:00

50 lines
855 B
TypeScript
Executable File

export interface menu {
header?: string;
title?: string;
icon?: any;
id?: number;
to?: string;
chip?: string;
BgColor?: string;
chipBgColor?: string;
chipColor?: string;
chipVariant?: string;
chipIcon?: string;
children?: menu[];
disabled?: boolean;
type?: string;
subCaption?: string;
}
const sidebarItem: menu[] = [
{
header: 'dashboards',
id: 1,
children: [
{
title: 'Dashboard',
icon: 'widget-add-line-duotone',
to: '/dashboards/dashboard1'
}
]
},
{
header: 'pages',
id: 2,
children: [
{
title: 'Dashboard',
icon: 'settings-minimalistic-line-duotone',
to: '/pages'
}
]
},
];
export default sidebarItem;