App.vue 249 B

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