[Doc] use relative links (#1856)

This commit is contained in:
neverland 2019-08-12 10:18:48 +08:00 committed by GitHub
parent be806ff699
commit bec0bd7abe
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 5 additions and 5 deletions

View File

@ -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 接口,助力开发者快速搭建小程序应用。
## 预览

View File

@ -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 接口,助力开发者快速搭建小程序应用。
### 预览

View File

@ -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}`;

View File

@ -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',

View File

@ -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();