iceshrimp/packages/client/src/components/ObjectView.vue
2023-10-25 18:44:51 +02:00

20 lines
323 B
Vue

<template>
<div class="zhyxdalp">
<XValue :value="value" :collapsed="false" />
</div>
</template>
<script lang="ts" setup>
import {} from "vue";
import XValue from "./ObjectViewValue.vue";
const props = defineProps<{
value: Record<string, unknown>;
}>();
</script>
<style lang="scss" scoped>
.zhyxdalp {
}
</style>