#How to get previous route from inside a page?

8 messages · Page 1 of 1 (latest)

spark magnet
#

I have a login page and I need to save the previous route before the user navigated to /login so I can then redirect him there after logging in. It's a simple thing but I looked everywhere and can't see to find the navigation stack data anywhere. Can anyone delucidate me on this? thxxx

#

PS: I don't wanna pass a query parameter for that

simple patrol
#

you can use a global state like useState. If you have a store set up, you can also use that

simple patrol
lost quest
#

Try checking Vue router's docs.

tall pollen
#

it'll have the value .back, containing the previous route

#

as in ```ts
useRouter().options.history.state.back