XinXiKuaiBaoYuan/vue-info-reporter/src/App.vue

13 lines
299 B
Vue
Raw Normal View History

<template>
<div id="app" class="h-screen bg-gray-50">
<!-- 主内容区域 -->
<div class="flex flex-col min-w-0 h-full">
<router-view />
</div>
</div>
</template>
<script setup lang="ts">
// 不需要导入任何组件ReportDrawer 在需要的地方单独使用
</script>