Files
admin-govern/src/App.vue

17 lines
331 B
Vue
Raw Normal View History

2023-12-21 16:42:39 +08:00
<template>
2024-01-30 13:47:03 +08:00
<el-config-provider :locale="zhCn">
2023-12-26 16:17:30 +08:00
<router-view></router-view>
</el-config-provider>
2023-12-21 16:42:39 +08:00
</template>
2023-12-26 16:17:30 +08:00
2024-01-30 13:47:03 +08:00
<script lang="ts" setup>
2023-12-26 16:17:30 +08:00
import zhCn from 'element-plus/dist/locale/zh-cn.mjs'
2024-01-30 13:47:03 +08:00
import useSetTheme from '@/utils/setTheme'
useSetTheme()
2023-12-29 14:46:20 +08:00
2023-12-26 16:17:30 +08:00
</script>
2023-12-28 14:49:48 +08:00
2024-01-30 13:47:03 +08:00
<style lang="scss">
/* Your SCSS styles here */
2023-12-28 14:49:48 +08:00
</style>