mirror of
https://github.com/tenrok/vue-json-viewer.git
synced 2026-06-20 20:00:37 +03:00
Merge branch 'add-null-value' into 1.x
This commit is contained in:
@@ -35,7 +35,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
@@ -17,7 +17,8 @@ new Vue({
|
|||||||
a: 'hello word',
|
a: 'hello word',
|
||||||
asd2: 1,
|
asd2: 1,
|
||||||
asd: false,
|
asd: false,
|
||||||
foo: null
|
foo: null,
|
||||||
|
bar: undefined
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -63,6 +63,7 @@ export default {
|
|||||||
JsonObject,
|
JsonObject,
|
||||||
JsonArray,
|
JsonArray,
|
||||||
JsonFunction,
|
JsonFunction,
|
||||||
|
JsonNull,
|
||||||
JIcon
|
JIcon
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|||||||
Reference in New Issue
Block a user