17 lines
319 B
Vue
17 lines
319 B
Vue
|
|
<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>
|