mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
25 lines
361 B
JavaScript
25 lines
361 B
JavaScript
Component({
|
|
options: {
|
|
multipleSlots: true
|
|
},
|
|
|
|
externalClasses: ['card-class'],
|
|
|
|
properties: {
|
|
useThumbSlot: {
|
|
type: Boolean,
|
|
value: false
|
|
},
|
|
useDetailSlot: {
|
|
type: Boolean,
|
|
value: false
|
|
},
|
|
thumb: String,
|
|
price: String,
|
|
title: String,
|
|
num: Number,
|
|
desc: String,
|
|
status: String
|
|
}
|
|
});
|