32 lines
688 B
Markdown
32 lines
688 B
Markdown
<cn>
|
|
#### ๅ็ด
|
|
ๅ็ด็ๅ่กจใ
|
|
</cn>
|
|
|
|
<us>
|
|
#### Vertical
|
|
Simplest Usage.
|
|
</us>
|
|
|
|
```vue
|
|
<template>
|
|
<a-descriptions title="User Info" layout="vertical">
|
|
<a-descriptions-item label="UserName">
|
|
Zhou Maomao
|
|
</a-descriptions-item>
|
|
<a-descriptions-item label="Telephone">
|
|
1810000000
|
|
</a-descriptions-item>
|
|
<a-descriptions-item label="Live">
|
|
Hangzhou, Zhejiang
|
|
</a-descriptions-item>
|
|
<a-descriptions-item label="Address" span="2">
|
|
No. 18, Wantang Road, Xihu District, Hangzhou, Zhejiang, China
|
|
</a-descriptions-item>
|
|
<a-descriptions-item label="Remark">
|
|
empty
|
|
</a-descriptions-item>
|
|
</a-descriptions>
|
|
</template>
|
|
```
|