22 lines
457 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>
<a-layout-header>Header</a-layout-header>
<a-layout-content>Content</a-layout-content>
</a-layout>
<a-layout-footer>Footer</a-layout-footer>
</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";
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>