| 12345678910111213141516171819 |
- <template>
- <FlexCol :inner-style="articleWrapStyle">
- <slot />
- </FlexCol>
- </template>
- <script setup lang="ts">
- import FlexCol from '@/components/layout/FlexCol.vue';
- const articleWrapStyle = {
- padding: '24rpx 28rpx',
- borderRadius: '16rpx',
- backgroundColor: '#fafafa',
- borderWidth: '1rpx',
- borderStyle: 'solid',
- borderColor: '#eeeeee',
- };
- </script>
|