Files
admin-govern/src/App.vue
2023-12-26 16:17:30 +08:00

11 lines
251 B
Vue

<template>
<el-config-provider :locale="zhCn">
<router-view></router-view>
</el-config-provider>
</template>
<script lang="ts" setup>
import { computed, ref } from 'vue'
import zhCn from 'element-plus/dist/locale/zh-cn.mjs'
</script>