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

17 lines
319 B
Vue
Raw Normal View History

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