iceshrimp-legacy/packages/client/src/components/MkObjectView.vue

20 lines
326 B
Vue
Raw Normal View History

2022-01-04 14:42:04 +01:00
<template>
2023-04-08 02:01:42 +02:00
<div class="zhyxdalp">
<XValue :value="value" :collapsed="false" />
</div>
2022-01-04 14:42:04 +01:00
</template>
2022-06-29 08:41:06 +02:00
<script lang="ts" setup>
2023-04-08 02:01:42 +02:00
import {} from "vue";
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>
<style lang="scss" scoped>
.zhyxdalp {
}
</style>