本文共 1008 字,大约阅读时间需要 3 分钟。
首页 发现 订单 我的
以一个例子来说
首页 发现 订单 我的
var Index= { template:`{ {$route.params.type}}`, created() { console.log(this.$route.params.type) }, } const routes=[ //动态路由的动态参数其实就是params参数中的键 //使用路由跳转时拼接进入的变量就是键值对中的值 { path:'/:type', component:Index } ] const router = new VueRouter({ routes })
转载地址:http://lzij.baihongyu.com/