App.vue 262 B

1234567891011121314151617
  1. <template>
  2. <router-view></router-view>
  3. </template>
  4. <script setup>
  5. </script>
  6. <style>
  7. #app {
  8. font-family: 'Microsoft YaHei';
  9. -webkit-font-smoothing: antialiased;
  10. -moz-osx-font-smoothing: grayscale;
  11. color: #2c3e50;
  12. margin: 0;
  13. padding: 0;
  14. }
  15. </style>