VFooter.vue
358 Bytes
<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>