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