2
0
mirror of https://github.com/tenrok/vue-json-viewer.git synced 2026-06-05 16:42:30 +03:00
Files
vue-json-viewer/types/json-null.vue
T
2018-09-17 05:58:30 +02:00

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>