feat: 添加通知

This commit is contained in:
zclzone 2023-11-10 15:39:50 +08:00
parent 2a61038fe3
commit e149dc90b4
2 changed files with 22 additions and 1 deletions

View File

@ -12,7 +12,7 @@
<a href="https://github.com/zclzone/vue-naive-admin/blob/main/README.EN.md">English</a>
</p>
> 🎉🎉🎉 2.0 全栈版本即将开源,全新重构,全面简化,后端使用 nestjs + mysql + typeOrm[👉点击体验 | admin.isme.top](https://admin.isme.top)目前火速完善文档中,点亮 star 支持一下吧
> 🎉🎉🎉 2.0 全栈版本即将开源,全新重构,全面简化,后端使用 nestjs + mysql + typeOrm[👉点击体验 | admin.isme.top](https://admin.isme.top)体验账号: admin / 123456目前火速完善文档中点亮 `star``watch` 或者加群可获取最新开源通知
### 简介

View File

@ -48,6 +48,27 @@ export async function addDynamicRoutes() {
})
router.hasRoute(EMPTY_ROUTE.name) && router.removeRoute(EMPTY_ROUTE.name)
router.addRoute(NOT_FOUND_ROUTE)
window.$notification?.success({
title: '🎉🎉🎉 2.0 全栈版本开放体验了!',
content: () =>
h(
'span',
{},
'2.0为全栈版本,提供前端+后端,全新重构,全面简化,',
h(
'a',
{ href: 'https://admin.isme.top', __blank: 'target' },
'👉https://admin.isme.top。'
),
h('p', {}, '体验账号: admin / 123456'),
h(
'p',
{},
'目前火速完善文档中,即将开源,点亮 `star` 和 `watch` 或者加群可获取最新开源通知!'
)
),
})
} catch (error) {
console.error(error)
$message.error('初始化用户信息失败: ' + error)