Files
Matdash_nuxt/components/layout/full/vertical-sidebar/sidebarItem.ts
2025-03-21 09:37:29 +07:00

64 lines
1.3 KiB
TypeScript

export interface menu {
header?: string;
title?: string;
icon?: any;
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: 'Home' },
{
title: 'Dashboard',
icon: 'widget-add-line-duotone',
to: '/'
},
{ header: 'Rekamedis' },
{
title: 'Pendaftaran',
icon: 'add-square-outline',
to: '/pendaftaran/rawatjalan/kategoripasien'
},
{
title: 'CPPT',
icon: 'clipboard-list-bold',
to: '/dokter/rawatjalan/cppt'
},
{ header: 'auth' },
{
title: 'Login',
icon: 'login-3-line-duotone',
to: '/auth/login'
},
{
title: 'Register',
icon: 'user-plus-rounded-line-duotone',
to: '/auth/register'
},
{ header: 'Extra' },
{
title: 'Icons',
icon: 'sticker-smile-circle-2-line-duotone',
to: '/icons'
},
{
title: 'Sample Page',
icon: 'planet-3-line-duotone',
to: '/sample-page'
},
];
export default sidebarItem;