chore(client): tweak client

This commit is contained in:
syuilo 2022-06-29 15:41:06 +09:00
parent 8648308823
commit 4fd386c3dc
5 changed files with 250 additions and 104 deletions

View file

@ -4,26 +4,13 @@
</div>
</template>
<script lang="ts">
import { computed, defineComponent } from 'vue';
<script lang="ts" setup>
import { } from 'vue';
import XValue from './object-view.value.vue';
export default defineComponent({
components: {
XValue
},
props: {
value: {
type: Object,
required: true,
},
},
setup(props) {
}
});
const props = defineProps<{
value: Record<string, unknown>;
}>();
</script>
<style lang="scss" scoped>