Pārlūkot izejas kodu

_digest() should include repeated child instances

Evan You 11 gadi atpakaļ
vecāks
revīzija
d39fa121b9
1 mainītis faili ar 1 papildinājumiem un 1 dzēšanām
  1. 1 1
      src/instance/scope.js

+ 1 - 1
src/instance/scope.js

@@ -120,7 +120,7 @@ exports._digest = function () {
   i = children.length
   while (i--) {
     var child = children[i]
-    if (!child._repeat && child.$options.inherit) {
+    if (child.$options.inherit) {
       child._digest()
     }
   }