File tree Expand file tree Collapse file tree 2 files changed +0
-9
lines changed Expand file tree Collapse file tree 2 files changed +0
-9
lines changed Original file line number Diff line number Diff line change @@ -271,10 +271,6 @@ module.exports = {
271
271
}
272
272
} else { // new instance
273
273
vm = this . build ( obj , i , true )
274
- // the _new flag is used in the second pass for
275
- // vm cache retrival, but if this is the init phase
276
- // the flag can just be set to false directly.
277
- vm . _new = ! init
278
274
vm . _reused = false
279
275
}
280
276
vms [ i ] = vm
@@ -330,7 +326,6 @@ module.exports = {
330
326
vm . $before ( nextEl )
331
327
}
332
328
}
333
- vm . _new = false
334
329
vm . _reused = false
335
330
}
336
331
if ( activeElement ) {
@@ -377,9 +372,6 @@ module.exports = {
377
372
inherit : this . inherit ,
378
373
template : this . inlineTempalte
379
374
} , Ctor )
380
- // flag this instance as a repeat instance
381
- // so that we can skip it in vm._digest
382
- vm . _repeat = true
383
375
// cache instance
384
376
if ( needCache ) {
385
377
this . cacheVm ( raw , vm , index , this . converted ? meta . $key : null )
Original file line number Diff line number Diff line change @@ -63,7 +63,6 @@ exports._init = function (options) {
63
63
}
64
64
65
65
// props used in v-repeat diffing
66
- this . _new = true
67
66
this . _reused = false
68
67
69
68
// merge options.
You can’t perform that action at this time.
0 commit comments