Commit 7fad00cb77e7b8b83ea69c9ccbf1753a802edff4

Authored by zreren
Committed by GitHub
1 parent 93d46552

The link of document had been expired (#2378)

* fix:doc link expired

* fix:doc link expired
README.md
@@ -44,7 +44,7 @@ Open the project in Gitpod (free online dev environment for GitHub) and start co @@ -44,7 +44,7 @@ Open the project in Gitpod (free online dev environment for GitHub) and start co
44 44
45 ## Documentation 45 ## Documentation
46 46
47 -[Document](https://vvbin.cn/doc-next/) 47 +[Document](https://doc.vvbin.cn/)
48 48
49 ## Preparation 49 ## Preparation
50 50
README.zh-CN.md
@@ -44,7 +44,7 @@ Vue Vben Admin 是一个免费开源的中后台模版。使用了最新的`vue3 @@ -44,7 +44,7 @@ Vue Vben Admin 是一个免费开源的中后台模版。使用了最新的`vue3
44 44
45 ## 文档 45 ## 文档
46 46
47 -[文档地址](https://vvbin.cn/doc-next/) 47 +[文档地址](https://doc.vvbin.cn/)
48 48
49 ## 准备 49 ## 准备
50 50
src/router/routes/modules/demo/system.ts
@@ -24,6 +24,15 @@ const system: AppRouteModule = { @@ -24,6 +24,15 @@ const system: AppRouteModule = {
24 component: () => import('/@/views/demo/system/account/index.vue'), 24 component: () => import('/@/views/demo/system/account/index.vue'),
25 }, 25 },
26 { 26 {
  27 + path: 'country',
  28 + name: 'CountryManagement',
  29 + meta: {
  30 + title: t('routes.demo.system.country'),
  31 + ignoreKeepAlive: false,
  32 + },
  33 + component: () => import('/@/views/demo/system/country/index.vue'),
  34 + },
  35 + {
27 path: 'account_detail/:id', 36 path: 'account_detail/:id',
28 name: 'AccountDetail', 37 name: 'AccountDetail',
29 meta: { 38 meta: {