Search code examples
vue.jsvuejs2vue-router

Programmatically redirect to URL outside the vue-router app but on the same domain?


I have an external web site and vue app on the same domain. I want programmatically redirects a user from vue app to external web site with a full page reload.

Example


Solution

  • All you need is:

    window.location.href = "http://example.com";