10 lines
208 B
Vue
10 lines
208 B
Vue
<template>
|
|
<a-config-provider :locale="zhCN">
|
|
<router-view />
|
|
</a-config-provider>
|
|
</template>
|
|
|
|
<script setup>
|
|
import zhCN from 'ant-design-vue/es/locale/zh_CN';
|
|
import 'dayjs/locale/zh-cn';
|
|
</script> |