Template
1
0
mirror of https://github.com/un-pany/v3-admin-vite.git synced 2025-04-22 03:49:19 +08:00
v3-admin-vite/src/App.vue

14 lines
354 B
Vue
Raw Normal View History

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