| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- ({
- type: 'recycle-list',
- attr: {
- listData: [
- { type: 'A' },
- { type: 'A' }
- ],
- templateKey: 'type',
- alias: 'item'
- },
- children: [{
- type: 'cell-slot',
- attr: { templateType: 'A' },
- children: [{
- type: 'div',
- attr: {
- '[[repeat]]': {
- '@expression': 'item.list',
- '@index': 'index',
- '@alias': 'object'
- }
- },
- children: [{
- type: 'text',
- attr: {
- value: {
- '@binding': 'object.name'
- }
- }
- }, {
- type: 'text',
- attr: {
- '[[repeat]]': {
- '@expression': 'object',
- '@alias': 'v',
- '@key': 'k',
- '@index': 'i'
- },
- value: {
- '@binding': 'v'
- }
- }
- }]
- }]
- }]
- })
|