I tried to run the vue router example in the docs,...
# support-questions-legacy
r
I tried to run the vue router example in the docs, but I couldn't get it to work with:
path: "/auth*",
. By reading https://router.vuejs.org/guide/migration/#Removed-star-or-catch-all-routes, it seems that catch-all routes handling changed. I managed to get it to work with
path: "/auth:pathMatch(.*)*"
. Is this the correct way to do it?
r
hey @raph0609 thanks for the update. If it works with the new change, then yea - it is the right way I guess. We will have to confirm this though.