2022-04-21 18:20:39 +08:00
< script lang = "ts" setup >
2024-11-27 10:17:30 +08:00
import { useGreyAndColorWeakness } from "@@/composables/useGreyAndColorWeakness"
import { useTheme } from "@@/composables/useTheme"
2024-11-14 16:29:59 +08:00
import zhCn from "element-plus/es/locale/lang/zh-cn" // Element Plus 中文包
2022-04-21 18:20:39 +08:00
2023-03-28 17:48:39 +08:00
const { initTheme } = useTheme ( )
2024-11-14 16:29:59 +08:00
const { initGreyAndColorWeakness } = useGreyAndColorWeakness ( )
2023-03-28 17:48:39 +08:00
2024-11-19 20:14:23 +08:00
// 初始化主题
2023-03-28 17:48:39 +08:00
initTheme ( )
2024-11-25 17:26:27 +08:00
2024-11-19 20:14:23 +08:00
// 初始化灰色模式和色弱模式
2024-11-14 16:29:59 +08:00
initGreyAndColorWeakness ( )
2023-02-28 14:11:39 +08:00
2024-11-19 20:14:23 +08:00
// 作者小心思
2023-02-28 14:11:39 +08:00
ElNotification ( {
title : "Hello" ,
2023-07-06 14:10:14 +08:00
type : "success" ,
2024-01-19 19:37:28 +08:00
dangerouslyUseHTMLString : true ,
2024-11-20 15:40:24 +08:00
message : "<a style='color: teal' target='_blank' href='https://github.com/un-pany/v3-admin-vite'>小项目获取 star 不易,如果你喜欢这个项目的话,欢迎点击这里支持一个 star !这是作者持续维护的唯一动力(小声:毕竟是免费的)</a>" ,
2023-02-28 14:11:39 +08:00
duration : 0 ,
position : "bottom-right"
} )
2022-04-21 18:20:39 +08:00
< / script >
2022-04-22 12:47:04 +08:00
< template >
2023-08-24 16:27:58 +08:00
< el-config-provider :locale = "zhCn" >
2022-04-22 12:47:04 +08:00
< router-view / >
2023-08-24 16:27:58 +08:00
< / el-config-provider >
2022-04-22 12:47:04 +08:00
< / template >