mirror of
https://github.com/tenrok/vue-json-viewer.git
synced 2026-06-05 16:42:30 +03:00
19 lines
278 B
Vue
19 lines
278 B
Vue
<template>
|
|
<span class="json-null">{{ jsonValue === null ? 'null' : 'undefined' }}</span>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: 'JsonNull',
|
|
props: {
|
|
jsonValue: Object
|
|
}
|
|
};
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
.json-null {
|
|
color: #e08331;
|
|
}
|
|
</style>
|