2022-04-21 18:20:39 +08:00
|
|
|
<script lang="ts" setup>
|
2023-02-28 14:11:39 +08:00
|
|
|
import { h } from "vue"
|
2022-10-17 15:04:27 +08:00
|
|
|
import { useTheme } from "@/hooks/useTheme"
|
2023-02-28 14:11:39 +08:00
|
|
|
import { ElNotification } from "element-plus"
|
2022-04-22 01:16:02 +08:00
|
|
|
import zhCn from "element-plus/lib/locale/lang/zh-cn"
|
2022-04-21 18:20:39 +08:00
|
|
|
|
2022-08-19 17:03:38 +08:00
|
|
|
/** 初始化主题 */
|
2023-03-28 14:16:17 +08:00
|
|
|
useTheme()
|
2022-10-26 10:48:01 +08:00
|
|
|
/** 将 Element Plus 的语言设置为中文 */
|
2022-08-19 17:03:38 +08:00
|
|
|
const locale = zhCn
|
2023-02-28 14:11:39 +08:00
|
|
|
|
|
|
|
ElNotification({
|
|
|
|
title: "Hello",
|
|
|
|
message: h(
|
|
|
|
"a",
|
|
|
|
{ style: "color: teal", target: "_blank", href: "https://github.com/un-pany/v3-admin-vite" },
|
|
|
|
"小项目获取 star 不易,如果你喜欢这个项目的话,欢迎点击这里支持一个 star !这是作者持续维护的唯一动力(小声:毕竟是免费的)"
|
|
|
|
),
|
|
|
|
duration: 0,
|
|
|
|
position: "bottom-right"
|
|
|
|
})
|
2022-04-21 18:20:39 +08:00
|
|
|
</script>
|
2022-04-22 12:47:04 +08:00
|
|
|
|
|
|
|
<template>
|
|
|
|
<ElConfigProvider :locale="locale">
|
|
|
|
<router-view />
|
|
|
|
</ElConfigProvider>
|
|
|
|
</template>
|