<a> tag href not work with url that not config in routes

I got these dom below in my window, but the href not works. I want to go to the http://forum.framework7.iopage when I click the

<a href="http://forum.framework7.io" class="">http://forum.framework7.io</a>

Thanks.

If I add these in routes, it will go to notFound page instead

{
    path: '(.*)',
    component: NotFoundPage,
  },

Hi, you should add “external” class to <a> element

Regards

1 Like
<a href="http://forum.framework7.io" class="external">http://forum.framework7.io</a>
1 Like