Vue_跳转页面的一些方法
1、
<router-link to="/home">首页</router-link>
2、
this.$router.push({path:'/content/495'});
this.$router.push({name:'news',params:{userId:123}})
3、命名式路由 在main.js中配置
const routes={
{path:'/news',component:News,name:'news'}
}
this.$router.push({name:'news'})
this.$router.push({name:'news',params:{userId:123}})

浙公网安备 33010602011771号