mirror of
https://github.com/pure-admin/pure-admin-thin.git
synced 2025-04-25 07:57:18 +08:00
24 lines
560 B
Vue
24 lines
560 B
Vue
<template>
|
|
<el-config-provider :locale="currentLocale">
|
|
<router-view />
|
|
</el-config-provider>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import { defineComponent } from 'vue'
|
|
import { ElConfigProvider } from 'element-plus'
|
|
import zhCn from 'element-plus/lib/locale/lang/zh-cn'
|
|
import en from 'element-plus/lib/locale/lang/en'
|
|
export default defineComponent({
|
|
name: 'app',
|
|
components: {
|
|
[ElConfigProvider.name]: ElConfigProvider
|
|
},
|
|
computed: {
|
|
currentLocale() {
|
|
return this.$storage.locale?.locale === 'zh' ? zhCn : en
|
|
}
|
|
}
|
|
})
|
|
</script>
|