优化界面

This commit is contained in:
2025-09-19 15:15:20 +08:00
parent 3cf3c9268c
commit f1934ba444
5 changed files with 147 additions and 27 deletions

View File

@@ -1,12 +1,15 @@
<template>
<div id="app">
<router-view />
</div>
<MainLayout />
</template>
<script>
import MainLayout from './layouts/MainLayout.vue';
export default {
name: 'App'
name: 'App',
components: {
MainLayout
}
};
</script>
@@ -14,4 +17,4 @@ export default {
#app {
min-height: 100vh;
}
</style>
</style>