feat: init

This commit is contained in:
ygx
2026-03-05 23:45:39 +08:00
commit 8fab91c5c7
214 changed files with 33682 additions and 0 deletions

View File

@@ -0,0 +1,27 @@
<template>
<a-layout-footer class="footer">
智能运维管理系统
<span style="margin-left: 3px">© {{ currentYear }}</span>
<p style="margin-left: 10px">
Powered by
<!-- <a target="_blank" style="color: #4d8af0; text-decoration: none">xx</a> -->
</p>
</a-layout-footer>
</template>
<script lang="ts" setup>
import { ref } from 'vue'
const currentYear = ref(new Date().getFullYear())
</script>
<style lang="less" scoped>
.footer {
display: flex;
align-items: center;
justify-content: center;
height: 60px;
color: var(--color-text-2);
text-align: center;
}
</style>