Auth0 and Vue: Error in render function: "InvalidTokenError: Invalid token specified: Cannot read property 'replace' of undefined"
auth0, vuejs2
Solution
Clear your browser's local storage cache. e.g for Chrome, press F12 to go to developer window, Storage\Local Storage, right click and clear. For IE, F12 to developer window. On 'Console' tab, run the command
localStorage.clear()
Problem
guys, I'm going through the VueJS tutorial for Auth0, and am getting this error: ``` InvalidTokenError {message: "Invalid token specified: Cannot read property 'replace' of undefined"} message:"Invalid token specified: Cannot read property 'replace' of undefined" ``` The tutorial is here: https://auth0.com/blog/vuejs2-authentication-tutorial/ The error is happening right when the app is supposed to bring up the Auth0 Lock widget. Thoughts?