I have a summary page and a detail subpage. All of the routes are implemented with vue-router (v 0.7.x) using programmatic navigation like this:
vue-router
Just write this code in your routing file :
{ name: 'Google', path: '/google', beforeEnter() { window.open("http://www.google.com", '_blank'); } }