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
README.zh-CN.md
src/router/routes/modules/demo/system.ts
... | ... | @@ -24,6 +24,15 @@ const system: AppRouteModule = { |
24 | 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 | 36 | path: 'account_detail/:id', |
28 | 37 | name: 'AccountDetail', |
29 | 38 | meta: { | ... | ... |