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
true
v-for
Given this
<Comp v-for="i in 10000" />
Current codegen (the 4th argument true indicates a child component that is also the root of the parent):
return ((_ctx) => { const n0 = _createFor(() => (10000), (_ctx0) => { const n2 = _createComponent(Comp, null, null, true) return n2 }) return n0 })()
Expected:
return ((_ctx) => { const n0 = _createFor(() => (10000), (_ctx0) => { - const n2 = _createComponent(Comp, null, null, true) + const n2 = _createComponent(Comp) return n2 }) return n0 })()
The text was updated successfully, but these errors were encountered:
Has it been fixed?
Sorry, something went wrong.
No branches or pull requests
Given this
Current codegen (the 4th argument
true
indicates a child component that is also the root of the parent):Expected:
The text was updated successfully, but these errors were encountered: