Преглед изворни кода

check vm.$el presence first

Evan You пре 10 година
родитељ
комит
ea0f6a1eb3
1 измењених фајлова са 3 додато и 1 уклоњено
  1. 3 1
      src/core/instance/lifecycle.js

+ 3 - 1
src/core/instance/lifecycle.js

@@ -175,7 +175,9 @@ export function lifecycleMixin (Vue: Class<Component>) {
     // turn off all instance listeners.
     vm.$off()
     // remove __vue__ reference
-    vm.$el.__vue__ = null
+    if (vm.$el) {
+      vm.$el.__vue__ = null
+    }
   }
 }