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
2.6.10
https://jsfiddle.net/x725dcbu/2/
html & template have the same behavior
normal markup: <input value="foo"> gives foo
<input value="foo">
foo
vue template <input value="foo"> gives foo
foo
in a SSR context, the generated HTML is correct, ie. <input value="foo">
The text was updated successfully, but these errors were encountered:
Duplicate of #8805
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
Version
2.6.10
Reproduction link
https://jsfiddle.net/x725dcbu/2/
Steps to reproduce
What is expected?
html & template have the same behavior
What is actually happening?
normal markup:
<input value="foo">
givesfoo
vue template
<input value="foo">
givesfoo
additional note
in a SSR context, the generated HTML is correct, ie.
<input value="foo">
The text was updated successfully, but these errors were encountered: