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
I am using this library. when I used value used json.stringfy, I convert easy json value. exmaple) parse option.
parse
<template> <JsonViewer :value="jsonData" copyable boxed sort theme="light" @onKeyClick="keyClick"/> <!-- example parse --> <JsonViewer parse :value="jsonStringData" copyable boxed sort theme="dark" @onKeyClick="keyClick"/> </template> <script setup> let obj = { name: "qiu",//string age: 18,//Array isMan:false,//boolean date:new Date(), fn:()=>{}, arr:[1,2,5], reg:/ab+c/i }; const jsonData = reactive(obj); const jsonStringData = reactive(obj); </script>
I want to equal jsonData and jsonStringData.
jsonData
jsonStringData
if you have no plan yet but need, maybe I can contribute?
The text was updated successfully, but these errors were encountered:
I am using this library. when I used value used json.stringfy, I convert easy json value. exmaple) parse option. <template> <JsonViewer :value="jsonData" copyable boxed sort theme="light" @onKeyClick="keyClick"/> <!-- example parse --> <JsonViewer parse :value="jsonStringData" copyable boxed sort theme="dark" @onKeyClick="keyClick"/> </template> <script setup> let obj = { name: "qiu",//string age: 18,//Array isMan:false,//boolean date:new Date(), fn:()=>{}, arr:[1,2,5], reg:/ab+c/i }; const jsonData = reactive(obj); const jsonStringData = reactive(obj); </script> I want to equal jsonData and jsonStringData. if you have no plan yet but need, maybe I can contribute?
I think your idea is good, you can contribute
Sorry, something went wrong.
No branches or pull requests
I am using this library.
when I used value used json.stringfy, I convert easy json value. exmaple)
parse
option.I want to equal
jsonData
andjsonStringData
.if you have no plan yet but need, maybe I can contribute?
The text was updated successfully, but these errors were encountered: