iceshrimp-legacy/packages/client/src/components/object-view.vue
2022-06-29 15:41:06 +09:00

21 lines
323 B
Vue

<template>
<div class="zhyxdalp">
<XValue :value="value" :collapsed="false"/>
</div>
</template>
<script lang="ts" setup>
import { } from 'vue';
import XValue from './object-view.value.vue';
const props = defineProps<{
value: Record<string, unknown>;
}>();
</script>
<style lang="scss" scoped>
.zhyxdalp {
}
</style>