App.vue 298 B

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