syuilo 4f15b6f7c2 Revert "perf?(client): remove needless scoped annotation for style"
This reverts commit ada04c1932dd694af1775e562fdcfa2c506454de.
2022-12-27 18:29:39 +09:00

21 lines
324 B
Vue

<template>
<div class="zhyxdalp">
<XValue :value="value" :collapsed="false"/>
</div>
</template>
<script lang="ts" setup>
import { } from 'vue';
import XValue from './MkObjectView.value.vue';
const props = defineProps<{
value: Record<string, unknown>;
}>();
</script>
<style lang="scss" scoped>
.zhyxdalp {
}
</style>