index.vue 716 B

1234567891011121314151617181920212223242526272829303132333435
  1. <template>
  2. <el-container class="outer-container">
  3. <Header></Header>
  4. <el-container class="center-container">
  5. <Aside ></Aside>
  6. <el-container direction="vertical" >
  7. <Main></Main>
  8. <Footer></Footer>
  9. </el-container>
  10. </el-container>
  11. </el-container>
  12. </template>
  13. <script>
  14. import { Header, Main, Aside, Footer } from './'
  15. export default {
  16. name: 'Layout',
  17. components: {
  18. Header,
  19. Main,
  20. Aside,
  21. Footer
  22. }
  23. }
  24. </script>
  25. <style scoped>
  26. .outer-container{
  27. height: 100vh;
  28. flex-direction: column;
  29. }
  30. .center-container{
  31. overflow: hidden;
  32. height: calc(100vh - 90px);
  33. }
  34. </style>