egirlskey/packages/frontend/src/components/MkObjectView.vue

20 lines
366 B
Vue

<!--
SPDX-FileCopyrightText: syuilo and other misskey contributors
SPDX-License-Identifier: AGPL-3.0-only
-->
<template>
<div>
<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>