Sharkey/packages/client/src/components/object-view.vue

21 lines
323 B
Vue
Raw Normal View History

2022-01-04 15:42:04 +02:00
<template>
<div class="zhyxdalp">
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-01-04 16:37:26 +02:00
import XValue from './object-view.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>
<style lang="scss" scoped>
.zhyxdalp {
}
</style>