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}})
posted @ 2021-06-11 19:58  ju-ruo  阅读(133)  评论(0)    收藏  举报