Files
orion-visor/orion-ops-ui/src/components/app/footer/index.vue
lijiahangmax 875c873622 review code.
2023-11-30 22:21:25 +08:00

42 lines
1.2 KiB
Vue

<template>
<a-layout-footer class="footer">
<a-space direction="vertical" size="medium">
<a-space size="large">
<a target="_blank" href="https://github.com/lijiahangmax/orion-ops-pro">官网</a>
<a target="_blank" href="https://github.com/lijiahangmax/orion-ops-pro">文档</a>
<a target="_blank" href="https://github.com/lijiahangmax/orion-ops-pro">教程</a>
<a target="_blank" href="https://github.com/lijiahangmax/orion-ops-pro">github</a>
<a target="_blank" href="https://gitee.com/lijiahangmax/orion-ops-pro">gitee</a>
<span title="当前版本">v{{ version }}</span>
</a-space>
<span class="copyright">
Copyright<icon-copyright /> 2023 By OrionOpsPro
</span>
</a-space>
</a-layout-footer>
</template>
<script lang="ts" setup>
const version = import.meta.env.VITE_APP_VERSION;
</script>
<style lang="less" scoped>
.footer {
display: flex;
align-items: flex-start;
justify-content: center;
text-align: center;
height: 64px;
a, span {
text-decoration: none;
color: rgb(var(--primary-6));
}
.copyright {
color: var(--color-text-3)
}
}
</style>