mirror of
https://gitee.com/ant-design-vue/ant-design-vue.git
synced 2024-12-04 21:18:14 +08:00
30 lines
677 B
Vue
30 lines
677 B
Vue
<docs>
|
|
---
|
|
order: 4
|
|
title:
|
|
zh-CN: 垂直
|
|
en-US: Vertical
|
|
---
|
|
|
|
## zh-CN
|
|
|
|
垂直的列表。
|
|
|
|
## en-US
|
|
|
|
Simplest Usage.
|
|
|
|
</docs>
|
|
|
|
<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>
|