first commit
This commit is contained in:
47
resources/js/layouts/components/NavbarShortcuts.vue
Normal file
47
resources/js/layouts/components/NavbarShortcuts.vue
Normal file
@@ -0,0 +1,47 @@
|
||||
<script setup>
|
||||
const shortcuts = [
|
||||
{
|
||||
icon: 'ri-calendar-line',
|
||||
title: 'Calendar',
|
||||
subtitle: 'Appointments',
|
||||
to: { name: 'apps-calendar' },
|
||||
},
|
||||
{
|
||||
icon: 'ri-file-list-3-line',
|
||||
title: 'Invoice App',
|
||||
subtitle: 'Manage Accounts',
|
||||
to: { name: 'apps-invoice-list' },
|
||||
},
|
||||
{
|
||||
icon: 'ri-user-line',
|
||||
title: 'Users',
|
||||
subtitle: 'Manage Users',
|
||||
to: { name: 'apps-user-list' },
|
||||
},
|
||||
{
|
||||
icon: 'ri-computer-line',
|
||||
title: 'Role Management',
|
||||
subtitle: 'Permission',
|
||||
to: { name: 'apps-roles' },
|
||||
},
|
||||
{
|
||||
icon: 'ri-pie-chart-2-line',
|
||||
title: 'Dashboard',
|
||||
subtitle: 'Dashboard Analytics',
|
||||
to: { name: 'dashboards-analytics' },
|
||||
},
|
||||
{
|
||||
icon: 'ri-settings-4-line',
|
||||
title: 'Settings',
|
||||
subtitle: 'Account Settings',
|
||||
to: {
|
||||
name: 'pages-account-settings-tab',
|
||||
params: { tab: 'account' },
|
||||
},
|
||||
},
|
||||
]
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<Shortcuts :shortcuts="shortcuts" />
|
||||
</template>
|
Reference in New Issue
Block a user