How to redirect to page and external url in vuejs
March 27, 2022 · 2 min read
Page navigation is one of the basic features of any website from one page to another page. In normal pages, Anchor links are used to navigate from one link to another link. <a href="cloudhadoop.com/about">About</a> The same can be replaced with binding in vuejs <a :href="cloudhadoop.com/about"> or <a v-bind:href="cloudhadoop.com/about"> It is a fixed way of adding the path at the HTML template that will redirect at the server level. Then how do you navigate to the page programmatically?...