| | |
| | | <script setup lang="ts"> |
| | | import type { CSSProperties } from 'vue'; |
| | | |
| | | import type { ContentCompactType } from '..\..\..\..\base\typings\src'; |
| | | import type { ContentCompactType } from '../../../../base/typings/src'; |
| | | |
| | | import { computed } from 'vue'; |
| | | |
| | | import { useLayoutContentStyle } from '..\..\..\..\composables\src'; |
| | | import { Slot } from '..\..\..\shadcn-ui\src'; |
| | | import { useLayoutContentStyle } from '../../../../composables/src'; |
| | | import { Slot } from '../../../shadcn-ui/src'; |
| | | |
| | | interface Props { |
| | | /** |
| | |
| | | </script> |
| | | |
| | | <template> |
| | | <main ref="contentElement" :style="style" class="relative bg-background-deep"> |
| | | <main ref="contentElement" :style="style" class="relative overflow-auto bg-background-deep"> |
| | | <Slot :style="overlayStyle"> |
| | | <slot name="overlay"></slot> |
| | | </Slot> |