12345678910111213141516171819202122232425262728293031323334 |
- <template>
- <div class="container">
- <LeftNav/>
- <div class="right-con">
- <TopTitle/>
- <router-view/>
- </div>
- </div>
- </template>
- <script>
- import TopTitle from './toptitle/TopTitle';
- import LeftNav from './leftnav/LeftNav';
- export default {
- components: {
- TopTitle,
- LeftNav
- },
- }
- </script>
- <style lang="scss">
- .container {
- width: 100%;
- height: 100%;
- display: flex;
- .right-con {
- width: calc(100% - 200px);
- display: flex;
- flex-direction: column;
- }
- }
- </style>
|