ant design vue卡片的高度
时间: 2023-07-07 14:40:22 浏览: 92
AntDesignVue一个基于AntDesign和Vue的企业级UI组件库
Ant Design Vue卡片的高度可以通过设置样式来进行调整。例如,可以使用行内样式或CSS样式表来设置卡片的高度,如下所示:
```html
<template>
<a-card style="height: 300px;">
<!-- 卡片内容 -->
</a-card>
</template>
<style>
a-card {
height: 300px;
}
</style>
```
在上面的示例中,将卡片的高度设置为300像素。你也可以使用其他单位来设置高度,例如百分比或视口单位。
阅读全文