2023-07-20 04:17:05 +09:00
|
|
|
<template>
|
2023-08-08 18:14:39 +09:00
|
|
|
<div>
|
2023-07-20 04:17:05 +09:00
|
|
|
<XValue :value="value" :collapsed="false" />
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts" setup>
|
|
|
|
import {} from "vue";
|
|
|
|
import XValue from "./MkObjectView.value.vue";
|
|
|
|
|
|
|
|
const props = defineProps<{
|
|
|
|
value: Record<string, unknown>;
|
|
|
|
}>();
|
|
|
|
</script>
|