App.vue 341 B

12345678910111213141516171819202122
  1. <template>
  2. <div id="app">
  3. <router-view/>
  4. </div>
  5. </template>
  6. <style>
  7. @import "assets/css/reset.css";
  8. @import "assets/css/iconfont.css";
  9. </style>
  10. <style lang="scss">
  11. #app{
  12. width: 100%;
  13. height: 100%;
  14. }
  15. .icon {
  16. width: 1em;
  17. height: 1em;
  18. vertical-align: -0.15em;
  19. fill: currentColor;
  20. overflow: hidden;
  21. }
  22. </style>