vnode.el._node is undefined in alreadyAdopted
See original GitHub issuesetType
triggers a root redraw. Not sure if I am triggering a race condition in domvm or if it is something I need to adjust in user land.
Issue Analytics
- State:
- Created 6 years ago
- Comments:21 (12 by maintainers)
Top Results From Across the Web
Nuxt error : nodeOps.tagName(...) is undefined in Vue ...
in my nuxt app , after changing route using this.$router.push({ path: '/path' }) i got the nodeOps.tagName(...) is undefined in firefox , ...
Read more >JS-0239 · Consider using `let` or `const` instead of `var`
1var Vue = (function (exports) { 2 'use strict'; 3 4 /** 5 * Make a map and return a function for checking...
Read more >Component Instance - Vue.js
Details. $el will be undefined until the component is mounted. For components with a single root element, $el will point to that element....
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
yeah, that should work fine as an isMounted test. but it’s shit DX so i’ve added 2 patches.
the first is a devmode warning if a prematurely hydrated vm ever reaches
syncChildren()
and fucks up subview mounting.the second ensures that any userland
update()
orredraw()
calls only create a vtree but never hydrate.with these changes you should not need additional guards.
v3.2.3 with these patches is tagged.
thanks for the report!