refactor(layout): Optimize the application's main layout structure.

This commit is contained in:
2025-12-26 17:32:21 +08:00
parent 57f29f855b
commit eeedce5b5c

View File

@@ -1,13 +1,13 @@
<template> <template>
<v-app> <v-app>
<notification-provider/> <notification-provider/>
<v-main> <v-main class="d-flex" style="height: 100vh;">
<v-card class="fill-height"> <v-card class="d-flex flex-column" style="height: 100%; width: 100%;">
<v-layout class="fill-height"> <v-layout class="d-flex flex-column" style="height: 100%;">
<main-drawer/> <main-drawer/>
<v-main style="height: 100vh"> <v-card class="flex-grow-1 overflow-y-auto ma-4">
<router-view/> <router-view/>
</v-main> </v-card>
</v-layout> </v-layout>
</v-card> </v-card>
</v-main> </v-main>