Skip to content
New issue

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

Using v-model on <input> in client-oriented render function in SSR doesn't work if type attribute is dynamic #5786

Closed
catrope opened this issue Apr 22, 2022 · 0 comments · Fixed by #5787
Labels
🐞 bug Something isn't working scope: ssr

Comments

@catrope
Copy link
Contributor

catrope commented Apr 22, 2022

Version

3.2.33

Reproduction link

stackblitz.com

Steps to reproduce

  1. In a component template, use an <input> that has a dynamic type attribute and uses v-model: <input :type="foo" v-model="bar">
  2. Compile this component to a client-oriented render function
  3. Use this compiled component in an SSR app, passing in { foo: 'text', bar: 'hello' }

What is expected?

The input should render as <input type="text" value="hello">

What is actually happening?

The input renders without a value: <input type="text">


This happens because vModelDynamic in src/directives/vModel.ts doesn't have an SSR equivalent, even though it would be possible to implement one.

catrope added a commit to catrope/vue-next that referenced this issue Apr 22, 2022
@LinusBorg LinusBorg added 🐞 bug Something isn't working scope: ssr labels Apr 29, 2022
yyx990803 pushed a commit that referenced this issue May 17, 2022

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
#5787)

fix #5786
@github-actions github-actions bot locked and limited conversation to collaborators Sep 27, 2023
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
🐞 bug Something isn't working scope: ssr
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants