vuer中,路由跳转问题

使用vue-router,以下url可以正常定位到我的页面:

http://localhost:8080/#/contactIndex

但是,在弹窗组件中的成功回调函数中,因为用不了vue-router,我使用以下url:

  window.location.href = '/contactIndex'

不能正常跳转到上面的这个页面,请问如何修改能够正常跳转到上面的页面?

阅读 4.1k
2 个回答

可以写个绝对链接:

window.location.href = 'http:xxx.html/contactIndex'

不能使用路由的跳转函数吗

this.$router.push({path:'/contactIndex'})

不行的话

window.location.hash = "#/contactIndex"
撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题