update:弹框高度bug

This commit is contained in:
2025-11-14 12:45:31 +08:00
parent 73476639eb
commit 6eb7ec8c3a
9 changed files with 41 additions and 8 deletions

View File

@@ -0,0 +1,13 @@
<template>
<div>知识库审核预览{{ data }}</div>
</template>
<script setup lang="ts">
interface Props {
data: any;
}
withDefaults(defineProps<Props>(), {
data: {},
});
</script>