mirror of
https://github.com/paricafe/misskey.git
synced 2025-01-20 16:58:40 -06:00
14 lines
255 B
Vue
14 lines
255 B
Vue
<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>
|