Compare commits
2 Commits
2063878411
...
68aed538c6
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
68aed538c6 | ||
|
|
f6ab446a91 |
@@ -7,14 +7,10 @@ const nav : NavigationMenuItem[][] = [[
|
|||||||
icon: 'i-lucide-house',
|
icon: 'i-lucide-house',
|
||||||
to: "/dashboard"
|
to: "/dashboard"
|
||||||
}, {
|
}, {
|
||||||
label: 'Inbox',
|
label: 'Notifications',
|
||||||
icon: 'i-lucide-inbox',
|
icon: 'i-lucide-inbox',
|
||||||
badge: '4',
|
badge: '4',
|
||||||
to: "/inbox"
|
to: "/events"
|
||||||
}, {
|
|
||||||
label: 'Contacts',
|
|
||||||
icon: 'i-lucide-users',
|
|
||||||
to: "/contacts"
|
|
||||||
}, {
|
}, {
|
||||||
label: 'Settings',
|
label: 'Settings',
|
||||||
icon: 'i-lucide-settings',
|
icon: 'i-lucide-settings',
|
||||||
|
|||||||
@@ -125,7 +125,6 @@ import { h } from 'vue'
|
|||||||
<UHeader title="Dashboard" toggle-side="left" >
|
<UHeader title="Dashboard" toggle-side="left" >
|
||||||
<template #toggle>
|
<template #toggle>
|
||||||
<UDashboardSidebarToggle />
|
<UDashboardSidebarToggle />
|
||||||
<UDashboardSidebarToggle />
|
|
||||||
</template>
|
</template>
|
||||||
</UHeader>
|
</UHeader>
|
||||||
<div class="mt-3 mb-3 flex flex-col w-full relative z-0">
|
<div class="mt-3 mb-3 flex flex-col w-full relative z-0">
|
||||||
|
|||||||
13
app/pages/events.vue
Normal file
13
app/pages/events.vue
Normal file
@@ -0,0 +1,13 @@
|
|||||||
|
<script setup lang="ts">
|
||||||
|
definePageMeta({
|
||||||
|
layout: "dashboard"
|
||||||
|
})
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<template>
|
||||||
|
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<style scoped>
|
||||||
|
|
||||||
|
</style>
|
||||||
13
app/pages/settings/profile.vue
Normal file
13
app/pages/settings/profile.vue
Normal file
@@ -0,0 +1,13 @@
|
|||||||
|
<script setup lang="ts">
|
||||||
|
definePageMeta({
|
||||||
|
layout: "dashboard"
|
||||||
|
})
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<template>
|
||||||
|
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<style scoped>
|
||||||
|
|
||||||
|
</style>
|
||||||
13
app/pages/settings/security.vue
Normal file
13
app/pages/settings/security.vue
Normal file
@@ -0,0 +1,13 @@
|
|||||||
|
<script setup lang="ts">
|
||||||
|
definePageMeta({
|
||||||
|
layout: "dashboard"
|
||||||
|
})
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<template>
|
||||||
|
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<style scoped>
|
||||||
|
|
||||||
|
</style>
|
||||||
13
app/pages/settings/ui.vue
Normal file
13
app/pages/settings/ui.vue
Normal file
@@ -0,0 +1,13 @@
|
|||||||
|
<script setup lang="ts">
|
||||||
|
definePageMeta({
|
||||||
|
layout: "dashboard"
|
||||||
|
})
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<template>
|
||||||
|
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<style scoped>
|
||||||
|
|
||||||
|
</style>
|
||||||
Reference in New Issue
Block a user