Files
it-console/code/web/IT工具综合平台/src/App.vue
2023-02-17 13:10:40 +08:00

38 lines
626 B
Vue

<!--
* @Author: Kane
* @Date: 2022-12-14 15:12:46
* @LastEditors: Kane
* @LastEditTime: 2023-02-15 09:34:25
* @FilePath: /IT/src/App.vue
* @Description:
*
* Copyright (c) ${2022} by Kane, All Rights Reserved.
-->
<template>
<el-config-provider :locale="this.locale">
<router-view></router-view>
</el-config-provider>
</template>
<script>
//引入语言组件
import zhCn from "element-plus/lib/locale/lang/zh-cn";
export default {
name: "App",
setup()
{
const locale = zhCn;
return { locale, };
},
components: {
// HelloWorld,
},
};
</script>
<style>
</style>