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

34 lines
429 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>
<script lang="ts">
import { computed, defineComponent } from 'vue';
2022-01-04 14:37:26 +00:00
import XValue from './object-view.value.vue';
2022-01-04 13:42:04 +00:00
export default defineComponent({
2022-01-04 14:37:26 +00:00
components: {
XValue
},
2022-01-04 13:42:04 +00:00
props: {
value: {
type: Object,
required: true,
},
},
setup(props) {
}
});
</script>
<style lang="scss" scoped>
.zhyxdalp {
}
</style>