I tried to go to \'www.mytargeturl.org\' using router.go, router.push, router.replace and window.location.href to redirect my vuejs app but i always get myVueapp.com/www.mytarge
Found the solution. By adding http in my target url, all is well! Like this window.location = 'http://mytargeturl.org"
window.location = 'http://mytargeturl.org"
This seems to be universal javascript truth not just vue.