2024-04-02 21:00:21 +08:00
|
|
|
<template>
|
|
|
|
|
<a-layout-footer class="footer">
|
2024-04-03 13:51:54 +08:00
|
|
|
<div class="footer_title">dc-admin by 兔子先森</div>
|
2024-04-02 21:00:21 +08:00
|
|
|
</a-layout-footer>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script setup lang="ts"></script>
|
|
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
|
.footer {
|
2024-04-03 13:51:54 +08:00
|
|
|
height: 30px;
|
2024-04-02 21:00:21 +08:00
|
|
|
box-sizing: border-box;
|
|
|
|
|
border-top: $border-1 solid $color-border-1;
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
}
|
|
|
|
|
.footer_title {
|
|
|
|
|
text-align: center;
|
|
|
|
|
margin: 0 auto;
|
|
|
|
|
color: $color-text-4;
|
|
|
|
|
}
|
|
|
|
|
</style>
|