Logo white

BJ_web_developers / huangshi

Sign in
  • Sign in
  • Project
  • Files
  • Commits
  • Network
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • huangshi
  • src
  • components
  • VFooter.vue
  • add 车主模板 左侧菜单
    5fcc1352
    Andy authored
    2019-07-10 18:12:06 +0800  
    Browse Code »
VFooter.vue 384 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 21
<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);*/
  background:#545c64;
  color:rgba(255,255,255,0.65);
}
</style>