This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<template>
<div id="app" class="h-screen bg-gray-50">
<!-- 主内容区域 -->
<div class="flex flex-col min-w-0 h-full">
<router-view />
</div>
</template>
<script setup lang="ts">
// 不需要导入任何组件,ReportDrawer 在需要的地方单独使用
</script>