[Vuejs]-Get Url Vue js (Router)

0👍

If a file loads before route you can still access all the functions with beforeEach

router.beforeEach(function(to,from,next){
    console.log(to,from);

 )
}

I did not understand your problems correctly. from is the current route location perhaps you can save it in a const variable.

Leave a comment