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