wujingjing
2025-02-12 35f81166f371ef1888d36c38ee1cee7b93bd32ae
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<template>
    <div class="h-full bg-gray-50 flex flex-col">
        <AppHeader class="flex-0" />
        <div class="flex-auto !overflow-y-auto bg-[#f4f4f4]">
            <div class="w-[63%] mx-auto">
                <router-view></router-view>
 
            </div>
        </div>
    </div>
</template>
 
<script setup lang="ts">
import AppHeader from './components/AppHeader.vue';
</script>
 
<style>
#app {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
</style>