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