2024-03-31 15:51:00 +08:00
|
|
|
<template>
|
2024-03-31 18:12:33 +08:00
|
|
|
<a-layout class="layout">
|
|
|
|
|
<a-layout-sider>Sider</a-layout-sider>
|
|
|
|
|
<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">
|
|
|
|
|
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>
|