vue 中路径props的传参

第一种:单一参数

{
path: '/news/:id', //模板props中也需要是id
props:true,
name:news,
component: news
}
vue 中路径props的传参
vue 中路径props的传参

第二种:多个参数

{
      path: '/news/:id',
      props:function(route){
        console.log(route);
        return {
          id:route.params.id,
          username:route.query.username
        }
      },
      name:news,
      alias:'/self',//别名
      component: news
    },
vue 中路径props的传参
vue 中路径props的传参
 收藏 (0) 打赏

您可以选择一种方式赞助本站

支付宝扫一扫赞助

微信钱包扫描赞助

未经允许不得转载:青梅博客 » vue 中路径props的传参

分享到: 更多 (0)
avatar

评论 抢沙发

  • QQ号
  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址
切换注册

登录

忘记密码 ?

切换登录

注册

我们将发送一封验证邮件至你的邮箱, 请正确填写以完成账号注册和激活