杨磊
昨天 00594e3e14d02377aef8319ae1c11ed79bfc5ee7
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<template>
  <div class="footerBox">FOOT</div>
</template>
 
<script setup lang="ts"></script>
 
<style scoped>
.footerBox {
  width: 100%;
  height: 240px;
  min-width: 1200px;
  color: #fff;
  background-color: #f0f0f0;
  text-align: center;
}
</style>