Section
Section 组件用于页面内容区块,支持不同的内边距、背景和间距。
基础区块
默认区块
内容将被包裹在一个合适的区块中
---
/**
* @component SectionBasic
* @description Section 组件基础用法示例
*/
import { Section } from '@coffic/cosy-ui';
---
<Section>
<h2>默认区块</h2>
<p>内容将被包裹在一个合适的区块中</p>
</Section>
自定义区块
自定义区块
大内边距,灰色背景,内容居中,带边框
---
/**
* @component SectionCustom
* @description Section 组件自定义用法示例
*/
import { Section } from '@coffic/cosy-ui';
---
<Section padding="lg" background="gray" centered={true} border={true}>
<h2>自定义区块</h2>
<p>大内边距,灰色背景,内容居中,带边框</p>
</Section>