123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- <script setup lang="ts">
- import type { ContentCompactType } from '@vben-core/typings';
- import type { CSSProperties } from 'vue';
- import { computed } from 'vue';
- import { useContentStyle } from '@vben-core/composables';
- interface Props {
- /**
- * 内容区域定宽
- */
- contentCompact: ContentCompactType;
- /**
- * 定宽布局宽度
- */
- contentCompactWidth: number;
- padding: number;
- paddingBottom: number;
- paddingLeft: number;
- paddingRight: number;
- paddingTop: number;
- }
- const props = withDefaults(defineProps<Props>(), {});
- const { contentElement, overlayStyle } = useContentStyle();
- const style = computed((): CSSProperties => {
- const {
- contentCompact,
- padding,
- paddingBottom,
- paddingLeft,
- paddingRight,
- paddingTop,
- } = props;
- const compactStyle: CSSProperties =
- contentCompact === 'compact'
- ? { margin: '0 auto', width: `${props.contentCompactWidth}px` }
- : {};
- return {
- ...compactStyle,
- flex: 1,
- padding: `${padding}px`,
- paddingBottom: `${paddingBottom}px`,
- paddingLeft: `${paddingLeft}px`,
- paddingRight: `${paddingRight}px`,
- paddingTop: `${paddingTop}px`,
- };
- });
- </script>
- <template>
- <main ref="contentElement" :style="style" class="bg-background-deep relative">
- <slot :overlay-style="overlayStyle" name="overlay"></slot>
- <slot></slot>
- </main>
- </template>
|