egirlskey/packages/frontend/src/components/MkObjectView.vue

21 lines
324 B
Vue
Raw Normal View History

2022-01-04 13:42:04 +00:00
<template>
<div class="zhyxdalp">
2022-01-04 14:37:26 +00:00
<XValue :value="value" :collapsed="false"/>
2022-01-04 13:42:04 +00:00
</div>
</template>
2022-06-29 06:41:06 +00:00
<script lang="ts" setup>
import { } from 'vue';
import XValue from './MkObjectView.value.vue';
2022-01-04 13:42:04 +00:00
2022-06-29 06:41:06 +00:00
const props = defineProps<{
value: Record<string, unknown>;
}>();
2022-01-04 13:42:04 +00:00
</script>
<style lang="scss" scoped>
2022-01-04 13:42:04 +00:00
.zhyxdalp {
}
</style>