Files
pqs-9100_client/frontend/src/App.vue
2024-08-07 21:48:24 +08:00

19 lines
408 B
Vue
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<template>
<!--element-plus语言国际化全局修改为中文-->
<el-config-provider :locale="zhCn">
<router-view/>
</el-config-provider>
</template>
<script lang="ts" setup>
defineOptions({
name: "App"
})
import { ElConfigProvider } from 'element-plus'
import zhCn from 'element-plus/es/locale/lang/zh-cn'
document.getElementById('loadingPage').remove()
</script>
<style scoped></style>