You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ant-design-vue/components/card/demo/basic.vue

35 lines
750 B

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

<docs>
---
order: 0
title:
zh-CN: 典型卡片
en-US: Basic card
---
## zh-CN
包含标题内容操作区域
可通过设置size为`default`或者`small`控制尺寸
## en-US
A basic card containing a title, content and an extra corner content.
Supports two sizes: `default` and `small`.
</docs>
<template>
<a-card title="Default size card" style="width: 300px">
<template #extra><a href="#">more</a></template>
<p>card content</p>
<p>card content</p>
<p>card content</p>
</a-card>
<br />
<a-card size="small" title="Small size card" style="width: 300px">
<template #extra><a href="#">more</a></template>
<p>card content</p>
<p>card content</p>
<p>card content</p>
</a-card>
</template>