2.7
<template>
<div id="basiclayout">
<a-layout style="min-height: 100vh">
<a-layout-header class="header">
<GlobalHeader />
</a-layout-header>
<a-layout-content class="content">
<router-view />
</a-layout-content>
<a-layout-footer class="footer">
<a href="https://github.com/wenotb" class="footer-link">
WenOtb的Github
</a>
</a-layout-footer>
</a-layout>
</div>
</template>
<script setup lang="ts">
import GlobalHeader from "@/components/GlobalHeader.vue";
</script>
<style>
#basiclayout .header {
margin-bottom: 16px;
box-shadow: #eee 1px 1px 5px;
}
#basiclayout .content {
background: linear-gradient(to right, #fefefe, #fff);
margin-bottom: 16px;
padding: 16px;
}
#basiclayout .footer {
background: #efefef;
padding: 16px;
position: sticky;
bottom: 0;
left: 0;
right: 0;
text-align: center;
}
.footer-link {
font-size: 18px;
color: #bbbbbbe6;
}
</style>