App.vue 997 Bytes
<template>
  <div id="app">
    <VHeader class="header"></VHeader>
    <router-view class="main"/>
    <VFooter class="footer"></VFooter>
  </div>
</template>

<script>
import VHeader from './components/commonHeaderFooter/VHeader'
import VFooter from './components/commonHeaderFooter/VFooter'

export default {
  name: 'App',
  components: {
    VHeader, VFooter
  }
}
</script>

<style>
  #app {
    min-height: 100%;
    position: relative;
    font-family: 'Avenir', Helvetica, Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: #333;
    font-size: 14px;
  }

  .header {
    height: 145px;
  }

  .main {
    padding-bottom: 50px;
  }

  .footer {
    width: 100%;
    height: 50px;
    line-height: 50px;
    position: absolute;
    bottom: 0;
    border-top: 1px solid rgba(188,188,188,1);
    font-size:14px;
    text-align: center;
    font-family:Microsoft YaHei;
    font-weight:400;
    color:rgba(51,51,51,1);
  }

</style>