商品卡片,用于展示商品的图片、价格等信息。
通过以下方式来全局注册组件,更多注册方式请参考组件注册。
import { createApp } from "vue";
import { Card } from "vant";
const app = createApp();
app.use(Card);
<van-card
num="2"
price="2.00"
desc="描述信息"
title="商品标题"
thumb="https://fastly.jsdelivr.net/npm/@vant/assets/ipad.jpeg"
/>
通过 origin-price
设置商品原价,通过 tag
设置商品左上角标签。
<van-card
num="2"
tag="标签"
price="2.00"
desc="描述信息"
title="商品标题"
thumb="https://fastly.jsdelivr.net/npm/@vant/assets/ipad.jpeg"
origin-price="10.00"
/>
Card
组件提供了多个插槽,可以灵活地自定义内容。
<van-card
num="2"
price="2.00"
desc="描述信息"
title="商品标题"
thumb="https://fastly.jsdelivr.net/npm/@vant/assets/ipad.jpeg"
>
<template #tags>
<van-tag plain type="primary">标签</van-tag>
<van-tag plain type="primary">标签</van-tag>
</template>
<template #footer>
<van-button size="mini">按钮</van-button>
<van-button size="mini">按钮</van-button>
</template>
</van-card>
参数 | 说明 | 类型 | 默认值 |
---|---|---|---|
thumb | 左侧图片 URL | string | - |
title | 标题 | string | - |
desc | 描述 | string | - |
tag | 图片角标 | string | - |
num | 商品数量 | number | string | - |
price | 商品价格 | number | string | - |
origin-price | 商品划线原价 | number | string | - |
centered | 内容是否垂直居中 | boolean | false
|
currency | 货币符号 | string | ¥
|
thumb-link | 点击左侧图片后跳转的链接地址 | string | - |
lazy-load | 是否开启图片懒加载,须配合 Lazyload 组件使用 | boolean | false
|
事件名 | 说明 | 回调参数 |
---|---|---|
click | 点击时触发 | event: MouseEvent |
click-thumb | 点击自定义图片时触发 | event: MouseEvent |
名称 | 说明 |
---|---|
title | 自定义标题 |
desc | 自定义描述 |
num | 自定义数量 |
price | 自定义价格 |
origin-price | 自定义商品原价 |
price-top | 自定义价格上方区域 |
bottom | 自定义价格下方区域 |
thumb | 自定义图片 |
tag | 自定义图片角标 |
tags | 自定义描述下方标签区域 |
footer | 自定义右下角内容 |
组件导出以下类型定义:
import type { CardProps } from "vant";
组件提供了下列 CSS 变量,可用于自定义样式,使用方法请参考 ConfigProvider 组件。
名称 | 默认值 | 描述 |
---|---|---|
--van-card-padding | var(--van-padding-xs) var(--van-padding-md) | - |
--van-card-font-size | var(--van-font-size-sm) | - |
--van-card-text-color | var(--van-text-color) | - |
--van-card-background | var(--van-background) | - |
--van-card-thumb-size | 88px | - |
--van-card-thumb-radius | var(--van-radius-lg) | - |
--van-card-title-line-height | 16px | - |
--van-card-desc-color | var(--van-text-color-2) | - |
--van-card-desc-line-height | var(--van-line-height-md) | - |
--van-card-price-color | var(--van-text-color) | - |
--van-card-origin-price-color | var(--van-text-color-2) | - |
--van-card-num-color | var(--van-text-color-2) | - |
--van-card-origin-price-font-size | var(--van-font-size-xs) | - |
--van-card-price-font-size | var(--van-font-size-sm) | - |
--van-card-price-integer-font-size | var(--van-font-size-lg) | - |
--van-card-price-font | var(--van-price-font) | - |
介绍用于在内容加载过程中展示一组占位图形。实例演示引入通过以下方式来全局注册组件,更多注册方式请参考组件注册。import { c...
引导用户按照流程完成任务的分步导航条,可根据实际应用场景设定步骤,步骤不得少于 2 步。基础用法简单的步骤条。设置active属...
Timeline 时间线可视化地呈现时间流信息。基础用法Timeline 可拆分成多个按照时间戳排列的 activity,时间戳是其区分于其他控件...
表格,在Bootstrap4中经常被使用到。那么在Bootstrap4中,如何设置各种样式的表格呢?基础表格在Bootstrap4中,我们可以使用.tab...
卡片是一个灵活的、可扩展的内容窗口。它包含了可选的卡片头和卡片脚、一个大范围的内容、上下文背景色以及强大的显示选项。创建...
弹出框控件和提示框有点类似,用户用鼠标点击元素后,就会显示。不过和提示框不同的是,弹出框能够显示的内容更多。创建弹出框通...
这些是创建请求时可以用的配置选项。只有url是必需的,如果没有指定method,请求将默认使用get方法。{// url 是用于请求的服务器...
singleAxis.axisTick |Object坐标轴刻度相关设置。singleAxis.axisTick.show |boolean[ default: true ]是否显示坐标轴刻度。sin...