16 lines
337 B
Vue
16 lines
337 B
Vue
<script setup>
|
|
import zhCN from 'ant-design-vue/es/locale/zh_CN';
|
|
//import enGB from 'ant-design-vue/es/locale/en_GB';
|
|
import { ref } from 'vue';
|
|
const locale = ref(zhCN); // 默认中文
|
|
</script>
|
|
|
|
<template>
|
|
<a-config-provider :locale="locale">
|
|
<router-view />
|
|
</a-config-provider>
|
|
</template>
|
|
|
|
<style scoped>
|
|
</style>
|