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