Yao 66d6f4fc03
[improvement] 增加部分组件自定义样式类,方便自定义样式 (#352)
* 增加自定义样式类,并开放部分,在文档上体现

* 增加 cell 外部样式类说明

* 增加自定义样式类
2018-07-10 16:25:47 +08:00

25 lines
376 B
JavaScript

Component({
options: {
multipleSlots: true
},
externalClasses: ['card-class', 'thumb-class'],
properties: {
useThumbSlot: {
type: Boolean,
value: false
},
useDetailSlot: {
type: Boolean,
value: false
},
thumb: String,
price: String,
title: String,
num: Number,
desc: String,
status: String
}
});