2018-10-08 17:36:14 +08:00

26 lines
391 B
TypeScript

import { VantComponent } from '../common/component';
VantComponent({
classes: [
'thumb-class',
'title-class',
'price-class',
'desc-class',
'num-class'
],
props: {
tag: String,
num: String,
desc: String,
thumb: String,
title: String,
price: String,
centered: Boolean,
currency: {
type: String,
value: '¥'
}
}
});