Skip to content

Instantly share code, notes, and snippets.

View clipwww's full-sized avatar
🐛
🎀😭🙏

David, Jian clipwww

🐛
🎀😭🙏
View GitHub Profile
@schaoss
schaoss / v-devtools.js
Last active February 2, 2024 03:13
Force Open Vue Devtools
(() => {
const root = Array.from(document.querySelectorAll('*')).find((e) => e.__vue__ || e.__vue_app__);
const app = root?.__vue__ || root?.__vue_app__;
const devtools = window.__VUE_DEVTOOLS_GLOBAL_HOOK__;
if (!app || !devtools) {
console.log(`Can't find vue app or devtools`);
return 0;
}