Files
hby/meiruo-frontend/src/components/Footer.vue
2026-02-10 10:45:23 +08:00

19 lines
301 B
Vue

<template>
<el-footer class="footer">
<p>© 2024 美若彩妆销售平台 版权所有</p>
</el-footer>
</template>
<script setup>
</script>
<style scoped lang="scss">
.footer {
background: #333;
color: #999;
display: flex;
align-items: center;
justify-content: center;
}
</style>