Skip to content
On this page

Card 卡片

基本使用

template
<c-card>
  <c-text text="card" />
</c-card>

<c-card title="title" extra="extra">
  <c-text text="card" />
</c-card>

<c-card title="title">
  <c-text text="body" />
  <template #extra>
    <c-text text="#extra" />
  </template>
</c-card>

<c-card>
  <template #header>
    <c-text text="#header" />
  </template>
  <c-text text="body" />
  <template #footer>
    <c-text text="#footer" />
  </template>
</c-card>

API

Card Props

名称类型默认值版本说明
cstringdefault配置名。使用说明
propsCardPropsundefined全部 props 。 使用说明
c-classHTMLAttributes['class']undefined自定义类名
c-styleHTMLAttributes['style']undefined自定义样式
header-classHTMLAttributes['class']undefinedheader 自定义类名
header-styleHTMLAttributes['style']undefinedheader 自定义样式
body-classHTMLAttributes['class']undefinedbody 自定义类名
body-styleHTMLAttributes['style']undefinedbody 自定义样式
footer-classHTMLAttributes['class']undefinedfooter 自定义类名
footer-styleHTMLAttributes['style']undefinedfooter 自定义样式
sizestring | numberundefined大小。使用说明
titlestringundefined标题
title-propsTextPropsundefinedTextProps
extrastringundefined标题右边的文字
extra-propsTextPropsundefinedTextProps
radiusstring | numberundefined圆角值。 使用说明