Logo white

BJ_web_developers / HSpark

Sign in
  • Sign in
  • Project
  • Files
  • Commits
  • Network
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • HSpark
  • src
  • components
  • VFooter.vue
  • add header ...
    76f08d4e
    add footer
    Andy authored
    2019-07-08 17:16:46 +0800  
    Browse Code »
VFooter.vue 358 Bytes
Edit Raw Blame History
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>