[Vuejs]-Vue Uncaught RangeError Maximum call stack size exceeded

0👍

I know it is a bit too late but for future use.

This happened to me several times due to a repeated navigation into a missing link.

in my navigation guard

beforeEach({}) 

I was navigating to

next('/dashboard')

but this route wasn’t defined (in my case i had removed it).

Make sure all the navigation point into a valid route path or name.

Leave a comment