Skip to content

Instantly share code, notes, and snippets.

@mallardduck
Created February 15, 2024 19:03
Show Gist options
  • Save mallardduck/96c43dcd6a054dd9616dc9fbb9cb6fdd to your computer and use it in GitHub Desktop.
Save mallardduck/96c43dcd6a054dd9616dc9fbb9cb6fdd to your computer and use it in GitHub Desktop.
Enable Vue DevTools in Prod
const app = Array.from(document.querySelectorAll('*')).find((e) => e.__vue__).__vue__
const version = app.version
const devtools = window.__VUE_DEVTOOLS_GLOBAL_HOOK__
devtools.enabled = true
const Vue = Object.getPrototypeOf(app).constructor
while (Vue.super) {
Vue = Vue.super
}
Vue.config.devtools = true
devtools.emit('init', Vue)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment