| 123456789101112131415161718192021222324252627 |
- ({
- type: 'recycle-list',
- attr: {
- append: 'tree',
- listData: [
- { type: 'A', color: 'red' },
- { type: 'A', color: 'blue' }
- ],
- switch: 'type',
- alias: 'item'
- },
- children: [{
- type: 'cell-slot',
- attr: { append: 'tree', case: 'A' },
- style: {
- backgroundColor: '#FF6600'
- },
- children: [{
- type: 'text',
- attr: {
- // not supported yet
- // classList: ['text', { '@binding': 'item.color' }],
- value: 'content'
- }
- }]
- }]
- })
|