App.vue 301 B

123456789101112131415161718192021222324252627282930313233
  1. <template>
  2. <div id="app">
  3. <router-view />
  4. </div>
  5. </template>
  6. <script>
  7. </script>
  8. <style lang="less">
  9. @import './assets/fonts/font.css';
  10. html,
  11. body {
  12. font-family: 'Regular';
  13. margin: 0;
  14. padding: 0;
  15. height: 100%;
  16. width: 100%;
  17. }
  18. h1,
  19. h2 {
  20. font-family: 'ExtraBold';
  21. }
  22. </style>