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="copyright">
      <span>内容由 AI 大模型生成,请仔细甄别</span>
    </div>
  </div>
</template>
 
<script>
  export default {
    name: 'LayoutFooter'
  }
</script>
 
<style lang="less" scoped>
  .footer {
    margin: 0.3vw 0 0.3vw;
    text-align: center;
    background-color: transparent!important;
 
    .copyright {
      color: #fff;
      font-size: 0.73vw;
    }
  }
</style>