1234567891011121314151617181920212223242526 |
- 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: ''
- }
- }
- });
|