0

when i build my vue project, browser always throw error: Uncaught RangeError Maximum call stack size exceeded, no matter it is in proxy environment or not.

versions:

*vue@ 2.1.8
*[email protected]
*[email protected]
4
  • 1
    What are you doing to cause that error? Could you show some code? uncaught range errors are usually the result of infinite loops or recursive functions. Commented Jan 9, 2017 at 11:53
  • 1
    are you console.logging a computed property in its definition? Commented Jan 9, 2017 at 14:19
  • Thanks Amresh for your attentions. when i change some codes and save my files, this erroe happen. Commented Jan 10, 2017 at 3:27
  • i tried to pasted my codes here, but failed; <br> here is my project link (github.com/abbymrs/vue-demo.git); Commented Jan 10, 2017 at 3:51

1 Answer 1

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.

Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.