使用vue-router,以下url可以正常定位到我的页面:
http://localhost:8080/#/contactIndex
但是,在弹窗组件中的成功回调函数中,因为用不了vue-router,我使用以下url:
window.location.href = '/contactIndex'
不能正常跳转到上面的这个页面,请问如何修改能够正常跳转到上面的页面?
使用vue-router,以下url可以正常定位到我的页面:
http://localhost:8080/#/contactIndex
但是,在弹窗组件中的成功回调函数中,因为用不了vue-router,我使用以下url:
window.location.href = '/contactIndex'
不能正常跳转到上面的这个页面,请问如何修改能够正常跳转到上面的页面?
不能使用路由的跳转函数吗
this.$router.push({path:'/contactIndex'})
不行的话
window.location.hash = "#/contactIndex"
5 回答4.9k 阅读✓ 已解决
4 回答3.2k 阅读✓ 已解决
2 回答4.8k 阅读✓ 已解决
4 回答4.4k 阅读✓ 已解决
4 回答1.9k 阅读✓ 已解决
2 回答2.7k 阅读✓ 已解决
2 回答2.6k 阅读✓ 已解决
可以写个绝对链接: