Layout.vue 533 B

12345678910111213141516171819202122232425262728293031323334
  1. <template>
  2. <div class="container">
  3. <LeftNav/>
  4. <div class="right-con">
  5. <TopTitle/>
  6. <router-view/>
  7. </div>
  8. </div>
  9. </template>
  10. <script>
  11. import TopTitle from './toptitle/TopTitle';
  12. import LeftNav from './leftnav/LeftNav';
  13. export default {
  14. components: {
  15. TopTitle,
  16. LeftNav
  17. },
  18. }
  19. </script>
  20. <style lang="scss">
  21. .container {
  22. width: 100%;
  23. height: 100%;
  24. display: flex;
  25. .right-con {
  26. width: calc(100% - 200px);
  27. display: flex;
  28. flex-direction: column;
  29. }
  30. }
  31. </style>