App.vue 239 B

12345678910111213141516
  1. <template>
  2. <div id="app">
  3. <router-view></router-view>
  4. </div>
  5. </template>
  6. <style lang="less">
  7. #app {
  8. min-width: 1347px;
  9. width: 100%;
  10. height: 100%;
  11. margin: 0;
  12. padding: 0;
  13. overflow: hidden;
  14. }
  15. </style>