App.vue 201 B

123456789101112131415
  1. <template>
  2. <div id="app">
  3. <Router-view />
  4. </div>
  5. </template>
  6. <style lang="less">
  7. #app {
  8. width: 100vw;
  9. height: 100vh;
  10. min-width: 1600px;
  11. min-height: 800px;
  12. overflow: auto;
  13. }
  14. </style>