You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
340 B
22 lines
340 B
7 years ago
|
<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>
|
||
|
```
|