I've been searching for examples on how to manage routes within the application and they all seem to suggest using this syntax:
this.$router.push({name: RouteName})
However, I'm curious about making a redirection using an absolute path. I attempted to do so like this:
this.$router.push({fullPath: https://google.com})
Unfortunately, it didn't have any effect.