要获取的路由地址(页面顶部地址栏):http://172.31.0.1:5353/judge-manage?id=3694089482878918764&name=%E6%B5%8B%E8%AF%95&judgeId=e9IJWN5usmzbrtNC3zYSRtAcKu-M333h
1、获取域名或ip+端口:172.31.0.1:5353
2、获取地址栏参数:/judge-manage?id=3694089482878918764&name=%E6%B5%8B%E8%AF%95&judgeId=e9IJWN5usmzbrtNC3zYSRtAcKu-M333h
//一定要写在 mounted才有效
mounted() {
if (process.client) {
console.log(window.location.host,'获取地址栏域名1');
console.log(this.$route.fullPath,'获取地址栏参数2');
}
},