This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
handingkang-ohmyweb/src/App.vue
2022-08-19 17:03:38 +08:00

16 lines
362 B
Vue

<script lang="ts" setup>
import { useAppStore } from "@/store/modules/app"
import zhCn from "element-plus/lib/locale/lang/zh-cn"
/** 初始化主题 */
useAppStore().initTheme()
/** 将 Element-Plus 的语言设置为中文 */
const locale = zhCn
</script>
<template>
<ElConfigProvider :locale="locale">
<router-view />
</ElConfigProvider>
</template>