mirror of
https://github.com/XiaoDaiGua-Ray/ray-template.git
synced 2025-04-06 03:57:49 +08:00
添加国内地址文档(感谢<https://yunkuangao.me/>提供支持)
This commit is contained in:
parent
60fc4685a5
commit
2274942154
@ -8,7 +8,8 @@
|
|||||||
"scrollReveal": "Scroll Reveal",
|
"scrollReveal": "Scroll Reveal",
|
||||||
"Axios": "Axios Request",
|
"Axios": "Axios Request",
|
||||||
"Table": "Table",
|
"Table": "Table",
|
||||||
"Doc": "Doc"
|
"Doc": "Doc",
|
||||||
|
"DocLocal": "Doc (China)"
|
||||||
},
|
},
|
||||||
"LayoutHeaderTooltipOptions": {
|
"LayoutHeaderTooltipOptions": {
|
||||||
"Reload": "Reload Current Page",
|
"Reload": "Reload Current Page",
|
||||||
|
@ -8,7 +8,8 @@
|
|||||||
"scrollReveal": "滚动动画",
|
"scrollReveal": "滚动动画",
|
||||||
"Axios": "请求",
|
"Axios": "请求",
|
||||||
"Table": "表格",
|
"Table": "表格",
|
||||||
"Doc": "文档"
|
"Doc": "文档",
|
||||||
|
"DocLocal": "文档 (国内地址)"
|
||||||
},
|
},
|
||||||
"LayoutHeaderTooltipOptions": {
|
"LayoutHeaderTooltipOptions": {
|
||||||
"Reload": "刷新当前页面",
|
"Reload": "刷新当前页面",
|
||||||
|
@ -27,13 +27,25 @@ const RayLink = defineComponent({
|
|||||||
key: 'ray-js-note',
|
key: 'ray-js-note',
|
||||||
src: 'https://note.youdao.com/s/ObWEe2BB',
|
src: 'https://note.youdao.com/s/ObWEe2BB',
|
||||||
tooltip: 'Ray的前端学习笔记',
|
tooltip: 'Ray的前端学习笔记',
|
||||||
icon: 'https://avatars.githubusercontent.com/u/51957438?v=4',
|
icon: 'https://yunkuangao.com/images/longmao.jpeg',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
key: 'ray-js-cover',
|
key: 'ray-js-cover',
|
||||||
src: 'https://note.youdao.com/s/IC8xKPdB',
|
src: 'https://note.youdao.com/s/IC8xKPdB',
|
||||||
tooltip: 'Ray的面试题总结',
|
tooltip: 'Ray的面试题总结',
|
||||||
icon: 'https://avatars.githubusercontent.com/u/51957438?v=4',
|
icon: 'https://yunkuangao.com/images/longmao.jpeg',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
key: 'ray-template-doc',
|
||||||
|
src: 'https://xiaodaigua-ray.github.io/ray-template-doc/',
|
||||||
|
tooltip: 'Ray Template Doc',
|
||||||
|
icon: 'https://yunkuangao.com/images/longmao.jpeg',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
key: 'ray-template-doc-out',
|
||||||
|
src: 'https://ray.yunkuangao.com/ray-template-doc/',
|
||||||
|
tooltip: 'Ray Template Doc (国内地址)',
|
||||||
|
icon: 'https://yunkuangao.com/images/longmao.jpeg',
|
||||||
},
|
},
|
||||||
]
|
]
|
||||||
|
|
||||||
|
10
src/router/modules/doc-local.ts
Normal file
10
src/router/modules/doc-local.ts
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
export default {
|
||||||
|
path: '/doc',
|
||||||
|
name: 'doc',
|
||||||
|
component: () => import('@/views/doc/index'),
|
||||||
|
meta: {
|
||||||
|
i18nKey: 'DocLocal',
|
||||||
|
icon: 'doc',
|
||||||
|
windowOpen: 'https://ray.yunkuangao.com/ray-template-doc/',
|
||||||
|
},
|
||||||
|
}
|
@ -6,8 +6,19 @@ import scrollReveal from './scroll-reveal'
|
|||||||
import axios from './axios'
|
import axios from './axios'
|
||||||
import table from './table'
|
import table from './table'
|
||||||
import doc from './doc'
|
import doc from './doc'
|
||||||
|
import docLocal from './doc-local'
|
||||||
|
|
||||||
const routes = [dashboard, echart, table, axios, scrollReveal, error, doc, reyl]
|
const routes = [
|
||||||
|
dashboard,
|
||||||
|
echart,
|
||||||
|
table,
|
||||||
|
axios,
|
||||||
|
scrollReveal,
|
||||||
|
error,
|
||||||
|
doc,
|
||||||
|
docLocal,
|
||||||
|
reyl,
|
||||||
|
]
|
||||||
|
|
||||||
export default routes
|
export default routes
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user