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
3.0.4
https://codesandbox.io/s/hardcore-fog-lbm32?file=/src/App.vue
Edit App.vue template part to this:
App.vue
<template> <svg width="12" height="15" viewBox="0 0 6 10"> <g v-for="(_0, x) in 2" :key="x"> <circle v-for="(_1, y) in 3" :key="y" r="1" :cx="1 + 4 * x" :cy="1 + 4 * y" fill="currentColor" /> </g> </svg> </template>
Rendering without errors.
ReferenceError _createVNode is not defined. For some reason vue doesn't import createVNode.
ReferenceError _createVNode is not defined.
It will work if you add any element somewhere inside template (at least one of the elements must have at least two children)
The text was updated successfully, but these errors were encountered:
ad4d391
No branches or pull requests
Version
3.0.4
Reproduction link
https://codesandbox.io/s/hardcore-fog-lbm32?file=/src/App.vue
Steps to reproduce
Edit
App.vue
template part to this:What is expected?
Rendering without errors.
What is actually happening?
ReferenceError _createVNode is not defined.
For some reason vue doesn't import createVNode.It will work if you add any element somewhere inside template (at least one of the elements must have at least two children)
The text was updated successfully, but these errors were encountered: