App.vue 390 B

123456789101112131415161718192021222324
  1. <template>
  2. <div id="app">
  3. <router-view></router-view>
  4. </div>
  5. </template>
  6. <script>
  7. export default {
  8. name: 'App',
  9. components: {}
  10. }
  11. </script>
  12. <style lang="scss">
  13. #app {
  14. -webkit-font-smoothing: antialiased;
  15. -moz-osx-font-smoothing: grayscale;
  16. position: absolute;
  17. height: 100%;
  18. width: 100%;
  19. color: var(--im-text-color);
  20. font-family: var(--im-font-family);
  21. }
  22. </style>