10 lines
201 B
Vue
10 lines
201 B
Vue
|
|
<template>
|
||
|
|
<a-config-provider :locale="zhCN">
|
||
|
|
<router-view />
|
||
|
|
</a-config-provider>
|
||
|
|
</template>
|
||
|
|
|
||
|
|
<script lang="ts" setup>
|
||
|
|
import zhCN from '@arco-design/web-vue/es/locale/lang/zh-cn';
|
||
|
|
</script>
|