zanui router redirect

This commit is contained in:
cookfront 2017-02-28 10:20:01 +08:00
parent 39b5472f6a
commit 837d5249c0
2 changed files with 9 additions and 2 deletions

View File

@ -14,10 +14,16 @@ Vue.use(VueRouter);
Vue.component('side-nav', SideNav);
Vue.component('mobile', Mobile);
let routesConfig = routes(navConfig);
routesConfig.push({
path: '/',
redirect: '/component/button'
});
const router = new VueRouter({
mode: 'hash',
base: __dirname,
routes: routes(navConfig)
routes: routesConfig
});
let indexScrollTop = 0;
@ -36,6 +42,7 @@ router.afterEach(route => {
Vue.nextTick(() => {
document.body.scrollTop = indexScrollTop;
});
}
});

View File

@ -25,7 +25,7 @@ export default {
props: {
icon: String,
title: String,
value: String,
value: [String, Number],
url: String,
label: String,
isLink: Boolean