In some situations a security exception will be thrown by the browser when trying to access window.localStorage or window.sessionStorage.
One situation is if your vue app is inside an iframe on a page viewed in incognito mode.
When this exception is thrown it prevents the entire vue app from booting.
Here is an example from the developer tools console in the context of the iframe.
In some situations a security exception will be thrown by the browser when trying to access
window.localStorage
orwindow.sessionStorage
.One situation is if your vue app is inside an iframe on a page viewed in incognito mode. When this exception is thrown it prevents the entire vue app from booting.
Here is an example from the developer tools console in the context of the iframe.