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

Technology CommunityCategory: Vue.jsHow can you redirect to another page in Vue.js?
VietMX Staff asked 3 years ago

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.