Blame view

src/components/VFooter.vue 358 Bytes
76f08d4e   Andy   add header
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
  <template>
      <div class="footer">
        <span>《隐私权政策》    《权益保障承诺书》     鄂ICP备19013449号</span>
      </div>
  </template>
  
  <script>
  export default {
    name: 'VFooter'
  }
  </script>
  
  <style scoped lang="scss">
  .footer{
    height:64px;
    line-height: 64px;
    background:rgba(6,8,10,1);
    color:rgba(255,255,255,0.65);
  }
  </style>