mirror of
https://github.com/EstrellaXD/Auto_Bangumi.git
synced 2026-04-13 18:11:03 +08:00
31 lines
639 B
Vue
31 lines
639 B
Vue
<script setup lang="ts"></script>
|
|
|
|
<template>
|
|
<Suspense>
|
|
<div layout-container>
|
|
<ab-topbar />
|
|
|
|
<main layout-main>
|
|
<ab-sidebar />
|
|
|
|
<div layout-content>
|
|
<ab-page-title :title="$route.name"></ab-page-title>
|
|
|
|
<div overflow-auto mt-12px flex-grow>
|
|
<RouterView v-slot="{ Component }">
|
|
<KeepAlive>
|
|
<component :is="Component" />
|
|
</KeepAlive>
|
|
</RouterView>
|
|
</div>
|
|
</div>
|
|
</main>
|
|
</div>
|
|
</Suspense>
|
|
</template>
|
|
|
|
<style lang="scss">
|
|
@import './style/transition';
|
|
@import './style/global';
|
|
</style>
|