0 votes
in VueJS by

How can you redirect to another page in Vue.js?

1 Answer

0 votes
by

If you are using vue-router, you should use router.go(path) to navigate to any particular route. The router can be accessed from within a component using this.$routerrouter.go() changed in VueJS 2.0. You can use router.push({ name: "yourroutename"})or just router.push("yourroutename") now to redirect.

Related questions

0 votes
asked Jan 9, 2020 in VueJS by GeorgeBell
0 votes
asked Jan 9, 2020 in VueJS by GeorgeBell
...