Files
admin-govern/src/App.vue
仲么了 526d541cc2 cion
2023-12-29 14:46:20 +08:00

20 lines
485 B
Vue

<template>
<el-config-provider :locale='zhCn'>
<router-view></router-view>
</el-config-provider>
</template>
<script lang='ts' setup>
import { computed, ref } from 'vue'
import zhCn from 'element-plus/dist/locale/zh-cn.mjs'
import { useConfig } from '@/stores/config'
import { useElementPlusTheme } from 'use-element-plus-theme'
const configStore = useConfig()
useElementPlusTheme(configStore.getColorVal('elementUiPrimary'))
</script>
<style lang='scss'>
</style>