Viewing JSON Data Without Dev Tools

Stuart Moscoe:
Is is possible to view the JSON data on a page if the dev tools are turned off? I want to check the data in my production site to confirm it is correct.


Andrew Dam:
Here are two ways to do this through the browser console:
• Turning on dev tools using vueapp.$store.state.site.content.devMode = 1 which will enable dev tools for your current browser session
• Accessing the model and app JSON directly using vueapp.$store.state.wndw.windows[0].formSchema.model and vueapp.$[store.state.site.content.app](http://store.state.site.content.app) (Note the [0] index indicates the parent page, if you wanted the JSON for a modal, it would be the [1] index)


Stuart Moscoe:
Thanks!!!