自学内容网 自学内容网

vue的两种路由传值

1.显式传值:可以在路径上看到

传值:this.$router.push({

        path:'/adbout',

        query:{

                a:1

        }

})

接收:this.$routes.query.a

2.隐式传值:在路径上看不到所传递的值

传值:this.$router.push({

        name:'about',

        params:{

                a:1

        }        

})

接收:this.$routes.params.a


原文地址:https://blog.csdn.net/m0_52872381/article/details/142487788

免责声明:本站文章内容转载自网络资源,如本站内容侵犯了原著者的合法权益,可联系本站删除。更多内容请关注自学内容网(zxcms.com)!