App.vue 504 B

12345678910111213141516171819202122232425
  1. <template>
  2. <router-view />
  3. </template>
  4. <script lang="ts">
  5. import { defineComponent } from 'vue';
  6. export default defineComponent({
  7. name: 'app'
  8. });
  9. </script>
  10. <style lang="scss">
  11. #doc {
  12. font-family: PingFangSC-Regular;
  13. -webkit-font-smoothing: antialiased;
  14. -moz-osx-font-smoothing: grayscale;
  15. -webkit-text-size-adjust: none;
  16. -ms-text-size-adjust: 100%;
  17. background: #fff;
  18. height: 100%;
  19. width: 100%;
  20. display: flex;
  21. flex-direction: column;
  22. padding-top: $doc-header-height;
  23. }
  24. </style>