25 lines
534 B
Vue
Raw Normal View History

2024-03-31 15:51:00 +08:00
<template>
2024-03-31 18:12:33 +08:00
<a-layout class="layout">
2024-04-01 09:00:20 +08:00
<Aside />
2024-03-31 18:12:33 +08:00
<a-layout>
<Header />
<Main />
<Footer />
2024-03-31 18:12:33 +08:00
</a-layout>
</a-layout>
2024-03-31 15:51:00 +08:00
</template>
2024-03-31 18:12:33 +08:00
<script setup lang="ts">
2024-04-01 09:00:20 +08:00
import Aside from "@/layout/components/Aside/index.vue";
import Header from "@/layout/components/Header/index.vue";
import Main from "@/layout/components/Main/index.vue";
import Footer from "@/layout/components/Footer/index.vue";
2024-03-31 18:12:33 +08:00
defineOptions({ name: "LayoutDefaults" });
</script>
2024-03-31 15:51:00 +08:00
2024-03-31 18:12:33 +08:00
<style lang="scss" scoped>
.layout {
height: 100vh;
}
</style>