Commit 7fad00cb77e7b8b83ea69c9ccbf1753a802edff4
Committed by
GitHub
1 parent
93d46552
The link of document had been expired (#2378)
* fix:doc link expired * fix:doc link expired
Showing
3 changed files
with
11 additions
and
2 deletions
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
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: { |