如果你使用 vue-router 文档在这里 路由信息对象的属性

const routes = [
  {path : '/portfolio/:year/review', component : Portfolio }
];

这个样子获取

this.$route.params.year
this.$route.query.id

 或者(未尝试)

 

clipboard.png

还有一种经常用的方式

当前页面
完整url可以用 window.location.href
路由路径可以用 this.$route.path
路由路径参数 this.$route.params

 

 

Logo

前往低代码交流专区

更多推荐