docs: allow preview in local (#2043)

This commit is contained in:
neverland 2019-09-18 15:37:32 +08:00 committed by GitHub
parent e45dcd6be0
commit 804adb0334
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -35,10 +35,15 @@ export default {
},
simulator() {
let prefix = '';
const { path } = this.$route.meta;
if (location.hostname === '0.0.0.0' || location.hostname === 'localhost') {
prefix = 'https://youzan.github.io';
}
if (!UNSHARED.includes(path)) {
return `/vant/mobile.html?hide_nav=1&weapp=1#/zh-CN/${path}`;
return `${prefix}/vant/mobile.html?hide_nav=1&weapp=1#/zh-CN/${path}`;
}
return `./preview.html#${path}`;