mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-05 19:41:45 +08:00
25 lines
374 B
JavaScript
25 lines
374 B
JavaScript
import { VantComponent } from '../common/component';
|
|
|
|
VantComponent({
|
|
classes: [
|
|
'thumb-class',
|
|
'title-class',
|
|
'price-class',
|
|
'desc-class',
|
|
'num-class'
|
|
],
|
|
|
|
props: {
|
|
num: String,
|
|
desc: String,
|
|
thumb: String,
|
|
title: String,
|
|
price: String,
|
|
centered: Boolean,
|
|
currency: {
|
|
type: String,
|
|
value: '¥'
|
|
}
|
|
}
|
|
});
|