28 lines
580 B
Vue
Raw Normal View History

<template>
<a-layout-footer class="footer">
2024-08-25 00:24:52 +08:00
<div class="footer_title" @click="onFooter">2024 © SnowAdmin by 兔子先森</div>
</a-layout-footer>
</template>
2024-08-25 00:24:52 +08:00
<script setup lang="ts">
const onFooter = () => {
window.open("https://github.com/WANG-Fan0912/SnowAdmin", "_blank");
};
</script>
<style lang="scss" scoped>
.footer {
2024-04-03 13:51:54 +08:00
height: 30px;
box-sizing: border-box;
border-top: $border-1 solid $color-border-2;
display: flex;
align-items: center;
}
.footer_title {
text-align: center;
margin: 0 auto;
color: $color-text-4;
2024-08-25 00:24:52 +08:00
cursor: pointer;
}
</style>