导航栏: 首页 评论列表

vue1.x路由一则

默认分类 2017/08/18 03:16

相比 path 而言 vue 更推荐 name 方式 跳转

// route map
'/launch/:type/:id': {
  name: 'main.launch.list',
  title: '投放管理',
  component: require('views/launch/launch_main.vue')
},

// route jump
this.$router.go({
  name: 'main.launch.list', 
  params: Object.assign({}, this.$route.params, {
    queryParams: Object.assign({}, this.$route.query, {}),
    id: 110
  })
})


>> 留言评论