summaryrefslogtreecommitdiff
path: root/packages/client/src/components/object-view.vue
blob: e9db96de8c0c5f2e8b2d27ba09229759991ca359 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<template>
<div class="zhyxdalp">
	<XValue :value="value" :collapsed="false"/>
</div>
</template>

<script lang="ts">
import { computed, defineComponent } from 'vue';
import XValue from './object-view.value.vue';

export default defineComponent({
	components: {
		XValue
	},

	props: {
		value: {
			type: Object,
			required: true,
		},
	},

	setup(props) {

	}
});
</script>

<style lang="scss" scoped>
.zhyxdalp {

}
</style>