27 lines
432 B
JavaScript
27 lines
432 B
JavaScript
Component({
|
|
externalClasses: ['i-class'],
|
|
|
|
options: {
|
|
multipleSlots: true
|
|
},
|
|
|
|
properties: {
|
|
full: {
|
|
type: Boolean,
|
|
value: false
|
|
},
|
|
thumb: {
|
|
type: String,
|
|
value: ''
|
|
},
|
|
title: {
|
|
type: String,
|
|
value: ''
|
|
},
|
|
extra: {
|
|
type: String,
|
|
value: ''
|
|
}
|
|
}
|
|
});
|