17 lines
331 B
Vue
17 lines
331 B
Vue
<template>
|
|
<el-config-provider :locale="zhCn">
|
|
<router-view></router-view>
|
|
</el-config-provider>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import zhCn from 'element-plus/dist/locale/zh-cn.mjs'
|
|
import useSetTheme from '@/utils/setTheme'
|
|
useSetTheme()
|
|
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
/* Your SCSS styles here */
|
|
</style>
|