⬆️ 升级依赖,修复终端报错

This commit is contained in:
BTMuli
2024-01-09 22:52:53 +08:00
parent 18501910cc
commit 17a5e968ee
7 changed files with 204 additions and 215 deletions

View File

@@ -1,24 +0,0 @@
<template>
<div class="tj-box">
{{ JSON.stringify(props.data, null, 2) }}
</div>
</template>
<script lang="ts" setup>
interface TJsonProps {
data: JSON;
}
const props = defineProps<TJsonProps>();
</script>
<style lang="css" scoped>
.tj-box {
overflow: auto;
width: 100%;
height: 100%;
padding: 10px;
border: 1px solid var(--common-shadow-2);
border-radius: 10px;
white-space: pre-wrap;
word-break: break-all;
}
</style>