App.vue 299 B

1234567891011121314
  1. <template>
  2. <router-view />
  3. </template>
  4. <script setup lang="ts"></script>
  5. <style>
  6. #app {
  7. font-family: PingFang SC-Regular, PingFang SC;
  8. -webkit-font-smoothing: antialiased;
  9. -moz-osx-font-smoothing: grayscale;
  10. color: #2c3e50;
  11. background-color: var(--color-bg-1);
  12. }
  13. </style>