| 12345678910111213141516171819202122232425262728 |
- ({
- type: 'recycle-list',
- attr: {
- listData: [
- { type: 'A' },
- { type: 'A' }
- ],
- templateKey: 'type',
- alias: 'item'
- },
- children: [{
- type: 'cell-slot',
- attr: { templateType: 'A' },
- children: [{
- type: 'image',
- attr: {
- '[[match]]': 'item.source',
- src: { '@binding': 'item.source' }
- }
- }, {
- type: 'text',
- attr: {
- '[[match]]': '!item.source',
- value: 'Title'
- }
- }]
- }]
- })
|