mirror of
https://github.com/tusen-ai/naive-ui.git
synced 2024-12-27 05:00:48 +08:00
24 lines
567 B
Markdown
24 lines
567 B
Markdown
# 列数
|
|
可以通过列数来控制每行显示的内容数量。
|
|
```html
|
|
<n-descriptions label-placement="top" :column="4">
|
|
<n-descriptions-item>
|
|
<template v-slot:label>
|
|
早餐
|
|
</template>
|
|
苹果
|
|
</n-descriptions-item>
|
|
<n-descriptions-item label="早午餐">
|
|
苹果
|
|
</n-descriptions-item>
|
|
<n-descriptions-item label="午餐">
|
|
苹果
|
|
</n-descriptions-item>
|
|
<n-descriptions-item label="晚餐">
|
|
苹果
|
|
</n-descriptions-item>
|
|
<n-descriptions-item label="夜宵">
|
|
苹果
|
|
</n-descriptions-item>
|
|
</n-descriptions>
|
|
``` |