- <script setup lang="ts">
- import theme from '@/themes';
- import zhCN from 'ant-design-vue/es/locale/zh_CN';
- import dayjs from 'dayjs';
- import 'dayjs/locale/zh-cn';
- dayjs.locale('zh-cn');
- </script>
- <template>
- <a-config-provider :theme="theme" :locale="zhCN">
- <RouterView name="header" />
- <RouterView />
- </a-config-provider>
- </template>
- <style scoped lang="scss"></style>
|