@@ -54,25 +54,25 @@ describe('codegen', () => {
54
54
it ( 'generate v-for directive' , ( ) => {
55
55
assertCodegen (
56
56
'<div><li v-for="item in items" :key="item.uid"></li></div>' ,
57
- `with(this){return _c('div',_l((items),function(item){return _c('li',{key:item.uid})}))}`
57
+ `with(this){return _c('div',_l((items),function(item){return _c('li',{key:item.uid})}),0 )}`
58
58
)
59
59
// iterator syntax
60
60
assertCodegen (
61
61
'<div><li v-for="(item, i) in items"></li></div>' ,
62
- `with(this){return _c('div',_l((items),function(item,i){return _c('li')}))}`
62
+ `with(this){return _c('div',_l((items),function(item,i){return _c('li')}),0 )}`
63
63
)
64
64
assertCodegen (
65
65
'<div><li v-for="(item, key, index) in items"></li></div>' ,
66
- `with(this){return _c('div',_l((items),function(item,key,index){return _c('li')}))}`
66
+ `with(this){return _c('div',_l((items),function(item,key,index){return _c('li')}),0 )}`
67
67
)
68
68
// destructuring
69
69
assertCodegen (
70
70
'<div><li v-for="{ a, b } in items"></li></div>' ,
71
- `with(this){return _c('div',_l((items),function({ a, b }){return _c('li')}))}`
71
+ `with(this){return _c('div',_l((items),function({ a, b }){return _c('li')}),0 )}`
72
72
)
73
73
assertCodegen (
74
74
'<div><li v-for="({ a, b }, key, index) in items"></li></div>' ,
75
- `with(this){return _c('div',_l((items),function({ a, b },key,index){return _c('li')}))}`
75
+ `with(this){return _c('div',_l((items),function({ a, b },key,index){return _c('li')}),0 )}`
76
76
)
77
77
// v-for with extra element
78
78
assertCodegen (
@@ -126,7 +126,7 @@ describe('codegen', () => {
126
126
it ( 'generate ref on v-for' , ( ) => {
127
127
assertCodegen (
128
128
'<ul><li v-for="item in items" ref="component1"></li></ul>' ,
129
- `with(this){return _c('ul',_l((items),function(item){return _c('li',{ref:"component1",refInFor:true})}))}`
129
+ `with(this){return _c('ul',_l((items),function(item){return _c('li',{ref:"component1",refInFor:true})}),0 )}`
130
130
)
131
131
} )
132
132
@@ -597,7 +597,7 @@ describe('codegen', () => {
597
597
it ( 'generate static trees inside v-for' , ( ) => {
598
598
assertCodegen (
599
599
`<div><div v-for="i in 10"><p><span></span></p></div></div>` ,
600
- `with(this){return _c('div',_l((10),function(i){return _c('div',[_m(0,true)])}))}` ,
600
+ `with(this){return _c('div',_l((10),function(i){return _c('div',[_m(0,true)])}),0 )}` ,
601
601
[ `with(this){return _c('p',[_c('span')])}` ]
602
602
)
603
603
} )
0 commit comments