Vue Router this.$router.push not working on methods
You have to push to a name or path Try this:
this.$router.push({ path: '/' })
this.$router.push({ name: 'Home' })
Solved, i changed the method this.$router.push()
from my code, to this.$router.go('/')
.
Thanks for everyone in comments.