App.vue 383 B

12345678910111213141516
  1. <script setup lang="ts">
  2. import theme from '@/themes';
  3. import zhCN from 'ant-design-vue/es/locale/zh_CN';
  4. import dayjs from 'dayjs';
  5. import 'dayjs/locale/zh-cn';
  6. dayjs.locale('zh-cn');
  7. </script>
  8. <template>
  9. <a-config-provider :theme="theme" :locale="zhCN">
  10. <RouterView name="header" />
  11. <RouterView />
  12. </a-config-provider>
  13. </template>
  14. <style scoped lang="scss"></style>