vue-cli:main.js使用vue-router

在main.js中进行路由配置

const router = new VueRouter({
    mode: 'history',
    routes: routerConfig
});

使用router的方法

router.push({path:'/login'});

你可能感兴趣的:(vue-cli:main.js使用vue-router)