fix: added breadcrumb and made header sticky

This commit is contained in:
Shariq Ansari 2025-06-30 12:56:47 +05:30
parent 62d5c2a91f
commit 9949478b36

View File

@ -1,10 +1,9 @@
<template> <template>
<div class="flex flex-col"> <div class="flex flex-col h-full overflow-hidden">
<LayoutHeader> <LayoutHeader>
<template #left-header> <template #left-header>
<div class="text-lg font-medium text-gray-900">Dashboard</div> <ViewBreadcrumbs routeName="Dashboard" />
</template> </template>
<template #right-header> </template>
</LayoutHeader> </LayoutHeader>
<div class="p-5 w-full overflow-y-scroll"> <div class="p-5 w-full overflow-y-scroll">
@ -47,6 +46,7 @@
</template> </template>
<script setup lang="ts"> <script setup lang="ts">
import ViewBreadcrumbs from '@/components/ViewBreadcrumbs.vue'
import LayoutHeader from '@/components/LayoutHeader.vue' import LayoutHeader from '@/components/LayoutHeader.vue'
import { AxisChart, DonutChart, NumberChart, usePageMeta } from 'frappe-ui' import { AxisChart, DonutChart, NumberChart, usePageMeta } from 'frappe-ui'