32 lines
658 B
Markdown
32 lines
658 B
Markdown
<cn>
|
|
#### ๅบๆฌ
|
|
็ฎๅ็ๅฑ็คบใ
|
|
</cn>
|
|
|
|
<us>
|
|
#### Basic
|
|
Simplest Usage.
|
|
</us>
|
|
|
|
```vue
|
|
<template>
|
|
<a-descriptions title="User Info">
|
|
<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="Remark">
|
|
empty
|
|
</a-descriptions-item>
|
|
<a-descriptions-item label="Address">
|
|
No. 18, Wantang Road, Xihu District, Hangzhou, Zhejiang, China
|
|
</a-descriptions-item>
|
|
</a-descriptions>
|
|
</template>
|
|
```
|