You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
DOMException: Failed to execute 'insertBefore' on 'Node': The node before which the new node is to be inserted is not a child of this node.
at insert (webpack-internal:///./node_modules/@vue/runtime-dom/dist/runtime-dom.esm-bundler.js:175:20)
at mountElement (webpack-internal:///./node_modules/@vue/runtime-core/dist/runtime-core.esm-bundler.js:2002:9)
at processElement (webpack-internal:///./node_modules/@vue/runtime-core/dist/runtime-core.esm-bundler.js:1955:13)
at patch (webpack-internal:///./node_modules/@vue/runtime-core/dist/runtime-core.esm-bundler.js:1920:21)
at patchBlockChildren (webpack-internal:///./node_modules/@vue/runtime-core/dist/runtime-core.esm-bundler.js:2125:13)
at patchElement (webpack-internal:///./node_modules/@vue/runtime-core/dist/runtime-core.esm-bundler.js:2091:13)
at processElement (webpack-internal:///./node_modules/@vue/runtime-core/dist/runtime-core.esm-bundler.js:1958:13)
at patch (webpack-internal:///./node_modules/@vue/runtime-core/dist/runtime-core.esm-bundler.js:1920:21)
at componentEffect (webpack-internal:///./node_modules/@vue/runtime-core/dist/runtime-core.esm-bundler.js:2387:17)
at run (webpack-internal:///./node_modules/@vue/reactivity/dist/reactivity.esm-bundler.js:115:20)
This is very similar than #604 that should have been fixed in alpha.2.
Replacing fallbackContainer by hostParentNode(oldVNode.el) in patchBlockChildren does fix the issue, so the condition is still not perfect.
The text was updated successfully, but these errors were encountered:
Version
3.0.0-alpha.2
Reproduction link
https://github.com/chz/vue-next-test
Steps to reproduce
Add a component with:
then enter a different value in the input
What is expected?
The
v-else
node should be insertedWhat is actually happening?
A error is thrown:
This is very similar than #604 that should have been fixed in
alpha.2
.Replacing
fallbackContainer
byhostParentNode(oldVNode.el)
inpatchBlockChildren
does fix the issue, so the condition is still not perfect.The text was updated successfully, but these errors were encountered: