2
0
Эх сурвалжийг харах

fix v-else inserting else block multiple times

Evan You 10 жил өмнө
parent
commit
e9b87a3adf

+ 1 - 1
src/directives/public/if.js

@@ -52,7 +52,7 @@ module.exports = {
       this.frag.remove()
       this.frag = null
     }
-    if (this.elseFactory) {
+    if (this.elseFactory && !this.elseFrag) {
       this.elseFrag = this.elseFactory.create(this._host, this._scope, this._frag)
       this.elseFrag.before(this.anchor)
     }