File tree Expand file tree Collapse file tree 8 files changed +8
-8
lines changed Expand file tree Collapse file tree 8 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ import type { MenuItem } from '@/types';
66import { ptViewMerge } from ' @/utils' ;
77
88interface ExtendedBreadcrumbProps extends Omit <BreadcrumbProps , ' model' > {
9- model: MenuItem [];
9+ model? : MenuItem [] | undefined ;
1010}
1111const componentProps = defineProps <ExtendedBreadcrumbProps >();
1212
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ import type { MenuItem } from '@/types';
66import { ptViewMerge } from ' @/utils' ;
77
88interface ExtendedContextMenuProps extends Omit <ContextMenuProps , ' model' > {
9- model: MenuItem [];
9+ model? : MenuItem [] | undefined ;
1010}
1111const componentProps = defineProps <ExtendedContextMenuProps >();
1212
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ import type { MenuItem } from '@/types';
55import { ptViewMerge } from ' @/utils' ;
66
77interface ExtendedMenuProps extends Omit <MenuProps , ' model' > {
8- model: MenuItem [];
8+ model? : MenuItem [] | undefined ;
99}
1010const componentProps = defineProps <ExtendedMenuProps >();
1111
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ import type { MenuItem } from '@/types';
66import { ptViewMerge } from ' @/utils' ;
77
88interface ExtendedMenubarProps extends Omit <MenubarProps , ' model' > {
9- model: MenuItem [];
9+ model? : MenuItem [] | undefined ;
1010}
1111const componentProps = withDefaults (
1212 defineProps <ExtendedMenubarProps >(),
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ import type { MenuItem } from '@/types';
66import { ptViewMerge } from ' @/utils' ;
77
88interface ExtendedPanelMenuProps extends Omit <PanelMenuProps , ' model' > {
9- model: MenuItem [];
9+ model? : MenuItem [] | undefined ;
1010}
1111const componentProps = defineProps <ExtendedPanelMenuProps >();
1212
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ import type { MenuItem } from '@/types';
99import { ptViewMerge } from ' @/utils' ;
1010
1111interface ExtendedTabListProps extends Omit <TabListProps , ' items' > {
12- items: MenuItem [];
12+ items? : MenuItem [] | undefined ;
1313}
1414const componentProps = defineProps <ExtendedTabListProps >();
1515
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ import type { MenuItem } from '@/types';
66import { ptViewMerge } from ' @/utils' ;
77
88interface ExtendedTieredMenuProps extends Omit <TieredMenuProps , ' model' > {
9- model: MenuItem [];
9+ model? : MenuItem [] | undefined ;
1010}
1111const componentProps = defineProps <ExtendedTieredMenuProps >();
1212
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ import ApplicationLogo from '@/components/ApplicationLogo.vue';
33 </script >
44
55<template >
6- <Container class =" min-h-screen flex flex-col justify-center items-center" >
6+ <Container class =" min-h-svh flex flex-col justify-center items-center" >
77 <div >
88 <InertiaLink href =" /" >
99 <ApplicationLogo class =" w-12 h-12 fill-current text-surface-900 dark:text-surface-0" />
You can’t perform that action at this time.
0 commit comments