17 lines
335 B
Vue
17 lines
335 B
Vue
<template>
|
|
<a-layout-footer class="footer">和气气站管理系统</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>
|