We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I have encountered an error Cannot read property 'forEach' of undefined when I have deku.dom.create like the method as follows.
Cannot read property 'forEach' of undefined
deku.dom.create
import * as deku from 'deku'; class someClass { public generateElement(): HTMLElement { let VNode = <div style='width: 100%; height: 100%;'></div>; return deku.dom.create(VNode); } }
I found out vnode.children turned out to be undefined in below code in some cases (it does not always happen) for some reason, it would be great if anyone knows there is any way around? https://github.com/anthonyshort/deku/blob/master/src/dom/create.js#L73
vnode.children
undefined
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I have encountered an error
Cannot read property 'forEach' of undefined
when I havedeku.dom.create
like the method as follows.I found out
vnode.children
turned out to beundefined
in below code in some cases (it does not always happen) for some reason, it would be great if anyone knows there is any way around?https://github.com/anthonyshort/deku/blob/master/src/dom/create.js#L73
The text was updated successfully, but these errors were encountered: