[Vuejs]-Router.push reloads page with '?#' added to the URL

0👍

You’re missing a slash. Your line should be:

this.$router.push({ path: "/dashboard" });

Leave a comment