36 lines
619 B
Vue
Raw Normal View History

2023-01-29 10:17:49 +08:00
<!--
* @Author: Kane
* @Date: 2022-12-14 15:12:46
* @LastEditors: Kane
* @LastEditTime: 2023-01-19 14:26:17
* @FilePath: \admin_system\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",
data() {
return {
locale: zhCn, //语言属性
};
},
components: {
// HelloWorld,
},
};
</script>
<style>
</style>