mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-11 01:33:08 +02:00
20 lines
323 B
Vue
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 './object-view.value.vue';
|
|
|
|
const props = defineProps<{
|
|
value: Record<string, unknown>;
|
|
}>();
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.zhyxdalp {
|
|
|
|
}
|
|
</style>
|