19 lines
301 B
Vue
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>
|