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

add ref to JsonNull component

This commit is contained in:
STAFYNIAK Sacha
2018-09-17 06:28:27 +02:00
parent 614a37caf2
commit a580beb70c
3 changed files with 11 additions and 7 deletions
+3 -1
View File
@@ -34,7 +34,9 @@ export default {
b: 'a', b: 'a',
a: 'hello word', a: 'hello word',
asd2: 1, asd2: 1,
asd: false asd: false,
foo: null,
bar: undefined
} }
} }
} }
+2 -1
View File
@@ -16,7 +16,8 @@ new Vue({
a: 'hello word', a: 'hello word',
asd2: 1, asd2: 1,
asd: false, asd: false,
foo: null foo: null,
bar: undefined
} }
} }
} }
+1
View File
@@ -59,6 +59,7 @@ export default {
JsonBoolean, JsonBoolean,
JsonObject, JsonObject,
JsonArray, JsonArray,
JsonNull,
JIcon JIcon
} }
}; };