vue如何获取当前页面的url
如果你使用 vue-router 文档在这里 路由信息对象的属性const routes = [{path : '/portfolio/:year/review', component : Portfolio }];这个样子获取this.$route.params.yearthis.$route.query.id 或者(未尝试) 还有一种经常用的方式当...
·
如果你使用 vue-router
文档在这里 路由信息对象的属性
const routes = [
{path : '/portfolio/:year/review', component : Portfolio }
];
这个样子获取
this.$route.params.year
this.$route.query.id
或者(未尝试)
还有一种经常用的方式
当前页面
完整url可以用 window.location.href
路由路径可以用 this.$route.path
路由路径参数 this.$route.params
更多推荐
已为社区贡献14条内容
所有评论(0)