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

13 lines
299 B
Vue
Raw Blame History

This file contains ambiguous Unicode characters

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>
</div>
</template>
<script setup lang="ts">
// 不需要导入任何组件ReportDrawer 在需要的地方单独使用
</script>