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

20 lines
366 B
Vue
Raw Normal View History

<!--
SPDX-FileCopyrightText: syuilo and other misskey contributors
SPDX-License-Identifier: AGPL-3.0-only
-->
2022-01-04 13:42:04 +00:00
<template>
2023-05-14 01:21:56 +00:00
<div>
2022-01-04 14:37:26 +00:00
<XValue :value="value" :collapsed="false"/>
2022-01-04 13:42:04 +00:00
</div>
</template>
2022-06-29 06:41:06 +00:00
<script lang="ts" setup>
import { } from 'vue';
import XValue from './MkObjectView.value.vue';
2022-01-04 13:42:04 +00:00
2022-06-29 06:41:06 +00:00
const props = defineProps<{
value: Record<string, unknown>;
}>();
2022-01-04 13:42:04 +00:00
</script>