| 12345678910111213141516171819202122232425262728293031323334353637 |
- <script lang="ts" setup>
- import { propTypes } from '@/utils/propTypes'
- import { useDesign } from '@/hooks/web/useDesign'
- defineOptions({ name: 'ContentWrap' })
- const { getPrefixCls } = useDesign()
- const prefixCls = getPrefixCls('content-wrap')
- defineProps({
- title: propTypes.string.def(''),
- message: propTypes.string.def('')
- })
- </script>
- <template>
- <ElCard :class="[prefixCls, 'mb-15px']" shadow="never">
- <template v-if="title" #header>
- <div class="flex items-center">
- <span class="text-16px font-700">{{ title }}</span>
- <ElTooltip v-if="message" effect="dark" placement="right">
- <template #content>
- <div class="max-w-200px">{{ message }}</div>
- </template>
- <Icon :size="14" class="ml-5px" icon="ep:question-filled" />
- </ElTooltip>
- <div class="flex flex-grow pl-20px">
- <slot name="header"></slot>
- </div>
- </div>
- </template>
- <div>
- <slot></slot>
- </div>
- </ElCard>
- </template>
|