mirror of
https://gitee.com/ant-design-vue/ant-design-vue.git
synced 2024-12-05 05:29:01 +08:00
22 lines
340 B
Markdown
22 lines
340 B
Markdown
|
<cn>
|
||
|
#### 垂直分割线
|
||
|
使用 `type="vertical"` 设置为行内的垂直分割线。
|
||
|
</cn>
|
||
|
|
||
|
<us>
|
||
|
#### Vertical
|
||
|
Use `type="vertical"` make it vertical.
|
||
|
</us>
|
||
|
|
||
|
```html
|
||
|
<template>
|
||
|
<div>
|
||
|
Text
|
||
|
<a-divider type="vertical" />
|
||
|
<a href="#">Link</a>
|
||
|
<a-divider type="vertical" />
|
||
|
<a href="#">Link</a>
|
||
|
</div>
|
||
|
</template>
|
||
|
```
|