| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- ({
- type: 'recycle-list',
- attr: {
- listData: [
- { type: 'A' },
- { type: 'A' }
- ],
- templateKey: 'type',
- alias: 'item'
- },
- children: [{
- type: 'cell-slot',
- attr: { templateType: 'A' },
- children: [{
- type: 'div',
- attr: {
- '@isComponentRoot': true,
- '@componentProps': {
- message: 'No binding'
- }
- },
- children: [{
- type: 'text',
- style: {
- height: '80px',
- fontSize: '60px',
- color: '#41B883'
- },
- attr: {
- value: { '@binding': 'output' }
- }
- }, {
- type: 'input',
- event: ['input'],
- style: {
- fontSize: '50px',
- color: '#666666',
- borderWidth: '2px',
- borderColor: '#41B883'
- },
- attr: {
- type: 'text',
- value: 0
- }
- }]
- }]
- }]
- })
|