Skip to content

Commit bb417bc

Browse files
committed
update to webpack3 and add option of double quotes
1 parent 643b8b9 commit bb417bc

File tree

6 files changed

+6120
-11563
lines changed

6 files changed

+6120
-11563
lines changed

example/App.vue

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,10 @@
4141
<label>showLength</label>
4242
<input type="checkbox" v-model="showLength">
4343
</div>
44+
<div>
45+
<label>showDoubleQuotes</label>
46+
<input type="checkbox" v-model="showDoubleQuotes">
47+
</div>
4448
<div>
4549
<label>deep</label>
4650
<select v-model="deep">
@@ -61,6 +65,7 @@
6165
:data="json"
6266
:path="path"
6367
:deep="deep"
68+
:show-double-quotes="showDoubleQuotes"
6469
:show-length="showLength"
6570
:path-checked="['res', 'res.c']"
6671
:path-selectable="((path, data) => typeof data !== 'number')"
@@ -104,6 +109,7 @@ export default {
104109
},
105110
selectableType: 'both',
106111
showLength: true,
112+
showDoubleQuotes: true,
107113
path: 'res',
108114
deep: 4,
109115
itemData: {},

0 commit comments

Comments
 (0)