2
0
mirror of https://github.com/tenrok/vue-json-viewer.git synced 2026-06-11 18:02:29 +03:00
Files
vue-json-viewer/types/json-undefined.vue
T
2018-09-17 06:49:01 +02:00

19 lines
293 B
Vue

<template>
<span class="json-undefined">{{ jsonValue === null ? 'null' : 'undefined' }}</span>
</template>
<script>
export default {
name: 'JsonUndefined',
props: {
jsonValue: Object
}
};
</script>
<style lang="scss">
.json-undefined {
color: #e08331;
}
</style>