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>
|
|