2022-01-04 07:42:04 -06:00
|
|
|
<template>
|
|
|
|
<div class="zhyxdalp">
|
2022-01-04 08:37:26 -06:00
|
|
|
<XValue :value="value" :collapsed="false"/>
|
2022-01-04 07:42:04 -06:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
|
|
|
import { computed, defineComponent } from 'vue';
|
2022-01-04 08:37:26 -06:00
|
|
|
import XValue from './object-view.value.vue';
|
2022-01-04 07:42:04 -06:00
|
|
|
|
|
|
|
export default defineComponent({
|
2022-01-04 08:37:26 -06:00
|
|
|
components: {
|
|
|
|
XValue
|
|
|
|
},
|
|
|
|
|
2022-01-04 07:42:04 -06:00
|
|
|
props: {
|
|
|
|
value: {
|
|
|
|
type: Object,
|
|
|
|
required: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
setup(props) {
|
|
|
|
|
|
|
|
}
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
.zhyxdalp {
|
|
|
|
|
|
|
|
}
|
|
|
|
</style>
|