Files
orion-visor/orion-ops-ui/src/components/footer/index.vue

18 lines
325 B
Vue
Raw Normal View History

2023-07-24 10:05:07 +08:00
<template>
2023-07-27 18:48:15 +08:00
<a-layout-footer class="footer">Orion Ops Pro</a-layout-footer>
2023-07-24 10:05:07 +08:00
</template>
2023-07-27 18:48:15 +08:00
<script lang="ts" setup>
</script>
2023-07-24 10:05:07 +08:00
<style lang="less" scoped>
.footer {
display: flex;
align-items: center;
justify-content: center;
height: 40px;
color: var(--color-text-2);
text-align: center;
}
</style>