mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
28 lines
613 B
Plaintext
28 lines
613 B
Plaintext
<view class="container">
|
|
<demo-block title="基础用法">
|
|
<van-card
|
|
title="标题"
|
|
desc="描述信息"
|
|
num="2"
|
|
price="2.00"
|
|
thumb="{{ imageURL }}"
|
|
/>
|
|
</demo-block>
|
|
|
|
<demo-block title="高级用法">
|
|
<van-card
|
|
title="标题"
|
|
desc="描述信息"
|
|
num="2"
|
|
price="2.00"
|
|
thumb="{{ imageURL }}"
|
|
use-footer-slot="{{ true }}"
|
|
>
|
|
<div slot="footer">
|
|
<van-button size="mini" custom-class="button">按钮</van-button>
|
|
<van-button size="mini">按钮</van-button>
|
|
</div>
|
|
</van-card>
|
|
</demo-block>
|
|
</view>
|