bottom.vue 523 字节
<template>
    <div class="bottom">
        <div class="bot_wrap">
            Copyright © 2016.Company name All rights reserved.
        </div>
    </div>
</template>
<script>
export default {
    data(){
        return{

        }
    },
    methods:{},
    
}
</script>
<style  scoped>
.bottom{
    border-top: 1px solid #999;
    height: 40px;
    background-color: #fff;
}
.bot_wrap{
    width: 1200px;
    margin: 0 auto;
    line-height: 40px;
    color: #666;
    font-size: 16px;
    text-align: center
}
</style>