[Doc] fit mobile

This commit is contained in:
陈嘉涵 2019-04-30 12:56:52 +08:00
parent 557fcc2f8c
commit 436b446e49

View File

@ -11,7 +11,14 @@ const router = new VueRouter({
routes: routes()
});
const ua = navigator.userAgent.toLowerCase();
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');
}
progress.start();
next();
});