From bec0bd7abe03bed6902dcf7a471bae4a9d332d29 Mon Sep 17 00:00:00 2001 From: neverland Date: Mon, 12 Aug 2019 10:18:48 +0800 Subject: [PATCH] [Doc] use relative links (#1856) --- README.md | 2 +- docs/markdown/intro.md | 2 +- docs/src/App.vue | 2 +- docs/src/doc.config.js | 2 +- docs/src/index.js | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index ac0a8453..2e05f632 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,7 @@ ## 介绍 -[Vant Weapp](https://youzan.github.io/vant-weapp) 是移动端 Vue 组件库 [Vant](https://github.com/youzan/vant) 的小程序版本,两者基于相同的视觉规范,提供一致的 API 接口,助力开发者快速搭建小程序应用。 +Vant Weapp 是移动端 Vue 组件库 [Vant](https://github.com/youzan/vant) 的小程序版本,两者基于相同的视觉规范,提供一致的 API 接口,助力开发者快速搭建小程序应用。 ## 预览 diff --git a/docs/markdown/intro.md b/docs/markdown/intro.md index 10212222..514fd3b8 100644 --- a/docs/markdown/intro.md +++ b/docs/markdown/intro.md @@ -8,7 +8,7 @@ ### 介绍 -[Vant Weapp](https://youzan.github.io/vant-weapp) 是移动端 Vue 组件库 [Vant](https://github.com/youzan/vant) 的小程序版本,两者基于相同的视觉规范,提供一致的 API 接口,助力开发者快速搭建小程序应用。 +Vant Weapp 是移动端 Vue 组件库 [Vant](https://github.com/youzan/vant) 的小程序版本,两者基于相同的视觉规范,提供一致的 API 接口,助力开发者快速搭建小程序应用。 ### 预览 diff --git a/docs/src/App.vue b/docs/src/App.vue index 1fb53874..4d7eebd3 100644 --- a/docs/src/App.vue +++ b/docs/src/App.vue @@ -36,7 +36,7 @@ export default { const { path } = this.$route.meta; if (!UNSHARED.includes(path)) { - return `https://youzan.github.io/vant/mobile.html?hide_nav=1&weapp=1#/zh-CN/${path}`; + return `/vant/mobile.html?hide_nav=1&weapp=1#/zh-CN/${path}`; } return `./preview.html#${path}`; diff --git a/docs/src/doc.config.js b/docs/src/doc.config.js index 72341a5b..743ee4e9 100644 --- a/docs/src/doc.config.js +++ b/docs/src/doc.config.js @@ -17,7 +17,7 @@ export default { logoLink: [ { image: 'https://img.yzcdn.cn/vant/vant-o.svg', - url: 'https://youzan.github.io/vant' + url: '/vant' }, { image: 'https://img.yzcdn.cn/vant/logo/github.svg', diff --git a/docs/src/index.js b/docs/src/index.js index 7e638b13..6bb8d4db 100644 --- a/docs/src/index.js +++ b/docs/src/index.js @@ -16,7 +16,7 @@ const isMobile = /ios|iphone|ipod|ipad|android/.test(ua); router.beforeEach((route, redirect, next) => { if (isMobile) { - location.replace('https://youzan.github.io/vant/mobile.html?weapp=1'); + location.replace('/vant/mobile.html?weapp=1'); } next();