vue2获取父级页面地址
时间: 2023-08-18 22:08:03 浏览: 334
Javascript中document.referrer隐藏来源的方法
你可以使用 `window.parent.location.href` 来获取父级页面的地址。这将返回一个字符串,其中包含父级页面的完整 URL。请注意,这种方法只适用于在嵌入式 iframe 中加载页面的情况。如果你需要在 Vue 组件中获取父级页面的地址,你可以在组件的 `mounted` 钩子函数中使用此方法。例如:
```
mounted() {
const parentUrl = window.parent.location.href;
console.log(parentUrl);
}
```
阅读全文