xiaoyi
4 天以前 1eba515718ec0420b8e6f3353c12179539d4c8b1
src/packages/@core/ui-kit/layout-ui/src/components/layout-content.vue
@@ -1,12 +1,12 @@
<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 {
  /**
@@ -56,7 +56,7 @@
</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>