2
0
mirror of https://github.com/tenrok/vue-json-viewer.git synced 2026-06-20 20:00:37 +03:00

Add support for Double Quotes on keys

This commit is contained in:
Vikram Biwal
2022-01-07 13:22:58 +05:30
parent 7b4d28cc21
commit 0a7ec9241f
3 changed files with 9 additions and 1 deletions
+5
View File
@@ -30,6 +30,7 @@
:sort="sort"
:preview-mode="previewMode"
:show-array-index="showArrayIndex"
:show-double-quotes="showDoubleQuotes"
/>
</div>
<div
@@ -96,6 +97,10 @@ export default {
showArrayIndex: {
type: Boolean,
default: true,
},
showDoubleQuotes: {
type: Boolean,
default: true,
}
},
provide () {