| 1234567891011121314151617 |
- <template>
- <a-config-provider :locale="zhCN">
- <router-view/>
- </a-config-provider>
- </template>
- <script setup lang="ts" >
- import zhCN from 'ant-design-vue/es/locale/zh_CN'
- import dayjs from 'dayjs'
- import 'dayjs/locale/zh-cn'
- dayjs.locale('zh-cn')
- console.log('process.env:', process.env)
- </script>
- <style lang="less">
- @import '~@/styles/theme.less';
- </style>
|