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.2.31
sfc.vuejs.org/
Call JSON.stringify on any computed (without .value)
JSON.stringify
.value
Not actually sure if this should be expected to work or not ...
You get "TypeError: cyclic object value" (Firefox)/"TypeError: Converting circular structure to JSON" (Chrome)
Seems similar to #1916, but affects recent Chrome/Firefox on PC
The text was updated successfully, but these errors were encountered:
Yeah well, it's never a good idea to pass a complex/stateful object to stringify.
I would not cosndier this a bug. You want to stringify the value, not the computed itself.
Sorry, something went wrong.
No branches or pull requests
Version
3.2.31
Reproduction link
sfc.vuejs.org/
Steps to reproduce
Call
JSON.stringify
on any computed (without.value
)What is expected?
Not actually sure if this should be expected to work or not ...
What is actually happening?
You get "TypeError: cyclic object value" (Firefox)/"TypeError: Converting circular structure to JSON" (Chrome)
Seems similar to #1916, but affects recent Chrome/Firefox on PC
The text was updated successfully, but these errors were encountered: