forked from vuejs/vue
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstateful.vdom.js
46 lines (46 loc) · 1003 Bytes
/
stateful.vdom.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
({
type: 'recycle-list',
attr: {
append: 'tree',
listData: [
{ type: 'A', number: 24 },
{ type: 'A', number: 42 }
],
templateKey: 'type',
alias: 'item'
},
children: [{
type: 'cell-slot',
attr: { append: 'tree', templateType: 'A' },
children: [{
type: 'div',
attr: {
'@isComponentRoot': true,
'@componentProps': {
start: { '@binding': 'item.number' }
}
},
children: [{
type: 'text',
style: { fontSize: '150px', textAlign: 'center' },
attr: {
value: { '@binding': 'count' } // need confirm
}
}, {
type: 'text',
event: ['click'],
style: {
fontSize: '100px',
textAlign: 'center',
borderWidth: '2px',
borderColor: '#DDDDDD',
backgroundColor: '#F5F5F5'
},
attr: { value: '+' }
}]
}, {
type: 'text',
attr: { value: 'other' }
}]
}]
})