1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
| <template>
| <div class="footer">
| <div class="footer-content">
| 版权所有© Copyright 1999-2024 云游四方软件股份有限公司 浙ICP备11024936号-1
| </div>
| </div>
| </template>
|
| <script setup>
| import { ref } from 'vue';
|
| </script>
| <style scoped>
| .footer {
| width: 100%;
| text-align: center;
| padding: 15px 0;
| background-color: #f8f8f8;
|
| }
|
| .footer-content {
| font-size: 12px;
| color: #333;
| }
| </style>
|
|