vue-router-gray
v0.1.12
Published
vue-router-gray
Downloads
6
Readme
vue-router-gray
基于vue-router的灰度发布策略
使用
import vueRouterGray from 'vue-router-gray';
const router = new VueRouter({});
vueRouterGray(router, {
check(params) {
/*{
protocol: location.protocol,
host: location.host,
path: location.pathname,
search: location.search,
hash: location.hash,
}*/
return new Promise((done) => {
setTimeout(() => done({
grayUrl: 'https://xxxx.com/gray/xxx'
}), 400);
});
},
});