Browse Source
The link of document had been expired (#2378)
* fix:doc link expired
* fix:doc link expired
pull/2383/head
zreren
3 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with
11 additions and
2 deletions
-
README.md
-
README.zh-CN.md
-
src/router/routes/modules/demo/system.ts
|
|
|
@ -44,7 +44,7 @@ Open the project in Gitpod (free online dev environment for GitHub) and start co |
|
|
|
|
|
|
|
## Documentation |
|
|
|
|
|
|
|
[Document](https://vvbin.cn/doc-next/) |
|
|
|
[Document](https://doc.vvbin.cn/) |
|
|
|
|
|
|
|
## Preparation |
|
|
|
|
|
|
|
|
|
|
|
@ -44,7 +44,7 @@ Vue Vben Admin 是一个免费开源的中后台模版。使用了最新的`vue3 |
|
|
|
|
|
|
|
## 文档 |
|
|
|
|
|
|
|
[文档地址](https://vvbin.cn/doc-next/) |
|
|
|
[文档地址](https://doc.vvbin.cn/) |
|
|
|
|
|
|
|
## 准备 |
|
|
|
|
|
|
|
|
|
|
|
@ -23,6 +23,15 @@ const system: AppRouteModule = { |
|
|
|
}, |
|
|
|
component: () => import('/@/views/demo/system/account/index.vue'), |
|
|
|
}, |
|
|
|
{ |
|
|
|
path: 'country', |
|
|
|
name: 'CountryManagement', |
|
|
|
meta: { |
|
|
|
title: t('routes.demo.system.country'), |
|
|
|
ignoreKeepAlive: false, |
|
|
|
}, |
|
|
|
component: () => import('/@/views/demo/system/country/index.vue'), |
|
|
|
}, |
|
|
|
{ |
|
|
|
path: 'account_detail/:id', |
|
|
|
name: 'AccountDetail', |
|
|
|
|