mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-05 19:41:45 +08:00
[Doc] use relative links (#1856)
This commit is contained in:
parent
be806ff699
commit
bec0bd7abe
@ -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 接口,助力开发者快速搭建小程序应用。
|
||||
|
||||
## 预览
|
||||
|
||||
|
@ -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 接口,助力开发者快速搭建小程序应用。
|
||||
|
||||
### 预览
|
||||
|
||||
|
@ -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}`;
|
||||
|
@ -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',
|
||||
|
@ -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();
|
||||
|
Loading…
x
Reference in New Issue
Block a user