mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-30 06:09:34 +08:00
1dab17eef0
* 💄 Divider support `asHeading` for lighter style * ✅ fix demo snapshot * docs: 📖 Divider asHeading documentation * fix tsd * ✅ fix demo snapshot * asHeading to plain * ✅ fix demo snapshot * fix css
30 lines
404 B
Markdown
30 lines
404 B
Markdown
---
|
|
order: 3
|
|
title:
|
|
zh-CN: 垂直分割线
|
|
en-US: Vertical
|
|
---
|
|
|
|
## zh-CN
|
|
|
|
使用 `type="vertical"` 设置为行内的垂直分割线。
|
|
|
|
## en-US
|
|
|
|
Use `type="vertical"` make it vertical.
|
|
|
|
```jsx
|
|
import { Divider } from 'antd';
|
|
|
|
ReactDOM.render(
|
|
<>
|
|
Text
|
|
<Divider type="vertical" />
|
|
<a href="#">Link</a>
|
|
<Divider type="vertical" />
|
|
<a href="#">Link</a>
|
|
</>,
|
|
mountNode,
|
|
);
|
|
```
|