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.1
https://codepen.io/stowball/pen/MWeerzR
v-text
To output a JSON.stringify() version of the object, like in Vue 2, especially as the docs say that v-text is the same as {{ }} https://v3.vuejs.org/api/directives.html#v-text
JSON.stringify()
{{ }}
It outputs a obj.toString(), which renders the infamous [object Object]
obj.toString()
[object Object]
The text was updated successfully, but these errors were encountered:
fix(compiler): stringify values on v-text
0c851fd
Close #2430
fix(compiler): stringify values on v-text (#2432)
314ab2c
fix #2430
posva
Successfully merging a pull request may close this issue.
Version
3.0.1
Reproduction link
https://codepen.io/stowball/pen/MWeerzR
Steps to reproduce
v-text
What is expected?
To output a
JSON.stringify()
version of the object, like in Vue 2, especially as the docs say thatv-text
is the same as{{ }}
https://v3.vuejs.org/api/directives.html#v-textWhat is actually happening?
It outputs a
obj.toString()
, which renders the infamous[object Object]
The text was updated successfully, but these errors were encountered: