To enable Vue DevTools in a production application that disables the DevTools integration, you can run the following code in your browser console.
window.__VUE_DEVTOOLS_GLOBAL_HOOK__.enabled = true
// Gather all Vue apps on the page.
const apps = Array.from(document.querySelectorAll('[data-v-app]'), (element) => {
return element.__vue_app__