Answers for "vue-router how to push to current route again"

17

vue router push

//Syntax - this.$router.push(path);
this.$router.push("/path");
Posted by: Guest on May-11-2020
0

vue on click router push not working

Please try it like this:

this.$router.push({ path: '/' });
this.$router.push({ name: 'Home' });
Posted by: Guest on August-05-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language