TOPVERSE_Official/layouts/default.vue

15 lines
432 B
Vue
Raw Normal View History

2023-04-23 14:19:03 +08:00
<template>
2023-04-23 23:14:52 +08:00
<main class="scrollbar scrollbar-rounded scrollbar-w-4px scrollbar-radius-2 scrollbar-track-color-transparent scrollbar-thumb-color-dark-50 scrollbar-thumb-radius-4 h-screen w-screen overflow-auto">
<Header />
2023-04-23 14:19:03 +08:00
<slot />
2023-04-23 23:14:52 +08:00
<ABtn shadow-lg>
test
</ABtn>
<AInput />
2023-04-23 14:19:03 +08:00
<Footer />
<div class="mx-auto mt-5 text-center text-sm opacity-25">
[Default Layout]
</div>
</main>
</template>