1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
| <template>
| <div id="foot">
| <span>Copyright © 2015-2021 灵秀智能</span>
| </div>
| </template>
| <script>
| export default {
|
| }
| </script>
| <style scoped>
| #foot{
| position: fixed;
| width: 20%;
| left: 40%;
| height: 20px;
| bottom: 0;
| text-align: center;
| }
| </style>
|
|