mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
29 lines
420 B
JavaScript
29 lines
420 B
JavaScript
Component({
|
|
options: {
|
|
multipleSlots: true,
|
|
addGlobalClass: true
|
|
},
|
|
|
|
externalClasses: [
|
|
'custom-class',
|
|
'thumb-class',
|
|
'title-class',
|
|
'price-class',
|
|
'desc-class',
|
|
'num-class'
|
|
],
|
|
|
|
properties: {
|
|
num: String,
|
|
desc: String,
|
|
thumb: String,
|
|
title: String,
|
|
price: String,
|
|
centered: Boolean,
|
|
currency: {
|
|
type: String,
|
|
default: '¥'
|
|
}
|
|
}
|
|
});
|