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
Which leads to the following error during server-side render:
TypeError: Cannot create property '__props' on string 'input'
at normalizePropsOptions (appDir\node_modules\.pnpm\@vue\[email protected]\node_modules\@vue\runtime-core\dist\runtime-core.cjs.prod.js:1580:30)
at setFullProps (appDir\node_modules\.pnpm\@vue\[email protected]\node_modules\@vue\runtime-core\dist\runtime-core.cjs.prod.js:1498:37)
at initProps (appDir\node_modules\.pnpm\@vue\[email protected]\node_modules\@vue\runtime-core\dist\runtime-core.cjs.prod.js:1409:5)
at setupComponent (appDir\node_modules\.pnpm\@vue\[email protected]\node_modules\@vue\runtime-core\dist\runtime-core.cjs.prod.js:4495:5)
at renderComponentVNode (appDir\node_modules\.pnpm\@vue\[email protected][email protected]\node_modules\@vue\server-renderer\dist\server-renderer.cjs.prod.js:156:17)
at Object.ssrRenderComponent (appDir\node_modules\.pnpm\@vue\[email protected][email protected]\node_modules\@vue\server-renderer\dist\server-renderer.cjs.prod.js:444:12)
at Object.ssrRender (appDir\temp\app.js:1148:24)
at Object.ssrRender (appDir\node_modules\.pnpm\@vue\[email protected]\node_modules\@vue\runtime-core\dist\runtime-core.cjs.prod.js:802:24)
at renderComponentSubTree (appDir\node_modules\.pnpm\@vue\[email protected][email protected]@[email protected]\node_modules\@vue\server-renderer\dist\server-renderer.cjs.prod.js:195:18) [email protected][email protected].
at renderComponentVNode (appDir\node_modules\.pnpm\@vue\[email protected][email protected]\node_modules\@vue\server-renderer\dist\server-renderer.cjs.prod.js:165:16)
The exact line causing the eror is in runtime-core.cjs.prod.js:1500:
return (comp.__props = shared.EMPTY_ARR);
What is expected?
The component renders correctly during SSR
What is actually happening?
The component failed to render with the error above
The repro link shows that the component handles correcly in--browser rendering.
Tried to kick off a repro in codesandbox using SSR, with no luck. Will be happy to provide one if you point me out to an example.
The text was updated successfully, but these errors were encountered:
Version
3.0.0-beta.18
Reproduction link
https://codesandbox.io/s/cranky-vaughan-0u3mi?file=/src/components/HelloWorld.vue
Steps to reproduce
For the given template:
In SSR, build produces the following output:
Which leads to the following error during server-side render:
The exact line causing the eror is in
runtime-core.cjs.prod.js:1500
:What is expected?
The component renders correctly during SSR
What is actually happening?
The component failed to render with the error above
The repro link shows that the component handles correcly in--browser rendering.
Tried to kick off a repro in codesandbox using SSR, with no luck. Will be happy to provide one if you point me out to an example.
The text was updated successfully, but these errors were encountered: