2017-08-19 12:39:11 +08:00
|
|
|
---
|
|
|
|
category: Components
|
|
|
|
title: Divider
|
|
|
|
subtitle: 分割线
|
2020-05-31 11:48:34 +08:00
|
|
|
cover: https://gw.alipayobjects.com/zos/alicdn/5swjECahe/Divider.svg
|
2022-11-09 12:28:04 +08:00
|
|
|
demo:
|
|
|
|
cols: 2
|
|
|
|
group:
|
|
|
|
title: 布局
|
|
|
|
order: 2
|
2017-08-19 12:39:11 +08:00
|
|
|
---
|
|
|
|
|
|
|
|
区隔内容的分割线。
|
|
|
|
|
|
|
|
## 何时使用
|
|
|
|
|
|
|
|
- 对不同章节的文本段落进行分割。
|
|
|
|
- 对行内文字/链接进行分割,例如表格的操作列。
|
|
|
|
|
2022-11-09 12:28:04 +08:00
|
|
|
## 代码演示
|
|
|
|
|
|
|
|
<code src="./demo/horizontal.tsx">水平分割线</code>
|
|
|
|
<code src="./demo/with-text.tsx">带文字的分割线</code>
|
|
|
|
<code src="./demo/plain.tsx">分割文字使用正文样式</code>
|
|
|
|
<code src="./demo/vertical.tsx">垂直分割线</code>
|
|
|
|
<code src="./demo/customize-style.tsx" debug>样式自定义</code>
|
|
|
|
|
2017-08-19 12:39:11 +08:00
|
|
|
## API
|
|
|
|
|
2021-03-01 19:20:48 +08:00
|
|
|
| 参数 | 说明 | 类型 | 默认值 | 版本 |
|
|
|
|
| --- | --- | --- | --- | --- |
|
2021-09-19 11:28:45 +08:00
|
|
|
| children | 嵌套的标题 | ReactNode | - | |
|
2021-03-01 19:20:48 +08:00
|
|
|
| className | 分割线样式类 | string | - | |
|
|
|
|
| dashed | 是否虚线 | boolean | false | |
|
|
|
|
| orientation | 分割线标题的位置 | `left` \| `right` \| `center` | `center` | |
|
2021-09-19 11:28:45 +08:00
|
|
|
| orientationMargin | 标题和最近 left/right 边框之间的距离,去除了分割线,同时 `orientation` 必须为 `left` 或 `right` | string \| number | - | |
|
2021-03-01 19:20:48 +08:00
|
|
|
| plain | 文字是否显示为普通正文样式 | boolean | false | 4.2.0 |
|
|
|
|
| style | 分割线样式对象 | CSSProperties | - | |
|
|
|
|
| type | 水平还是垂直类型 | `horizontal` \| `vertical` | `horizontal` | |
|