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-null.vue
T
2018-09-17 05:44:37 +02:00

19 lines
235 B
Vue

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