routerView.vue 229 B

123456789101112131415
  1. <template>
  2. <div class="app-main-view-div">
  3. <router-view />
  4. </div>
  5. </template>
  6. <style scoped>
  7. .app-main-view-div {
  8. width: 100%;
  9. height: 100%;
  10. position: relative;
  11. overflow-x: hidden;
  12. overflow-y: auto;
  13. }
  14. </style>