vue

vue 编程式导航

2018-08-29  本文已影响0人  super静_jingjing

编程式导航其实就是用javascript来实现页面之间的跳转;
使用下面的方式把同样可以跳转

this.$router.push({path:'news'});
//传值。变成 /news? aid =343  在news页面使用get方式获取aid
this.$router.push({ path: 'news', query: { aid: '343' }})

也可以写成命名路由的方式:

this.$router.push({ name: 'news', params: { aid: 123 }});

在编程式路由中name和path不可同时存在

上一篇 下一篇

猜你喜欢

热点阅读