-
-
Notifications
You must be signed in to change notification settings - Fork 4.1k
Dev tools not activating #1807
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
I've been experiencing the same issue, sometimes closing the Chrome DevTools panel and re-opening it again solves the problem, but not consistently. |
I have also had this issue and usually the solution above works, but as of today it seems that devtools just won't connect to several sites I had no issue connecting to within the last week. |
I just downgraded to 6.0.13 because it was the most recent version available on crx4chrome.com and local builds failed repeatedly. The extension now connects successfully to the previously affected sites |
I have the same issue but in my case, the Vue icon is active but the devtool bar is not activated. Vue version: 2.6.14. |
it worked |
After fighting auto updates for a few days, I noticed the new extension was working on a separate chrome profile which led me to believe the extension alone was not the problem. I cleared the application cache ("clear site data" under devtools > application) for |
I have the same issue. Browser: Google Chrome and after debugging |
vuejs/devtools@c888003 |
I have tried the new version without success. Vue version: 3.2.19 Other coworkers has the same problem on Mac/Chrome. Edge did not work either. |
Same in FF Dev (Win10). Vue 3.2.31, Vue Devtool v6.1.4. Reopening FF DevTools doesn't necessarily solve it. |
Where do I add this code? Sorry for the dumb question, I'm only in my first year of Uni |
@Akryum: Your c888003 commit is a great improvement, thank you! 🎉 However, I think an additional fix is needed. I'm noticing that while Nuxt v2 is in the process of initialising, the
I've found that making this change to // Method 1: Check Nuxt.js
- const nuxtDetected = !!(window.__NUXT__ || window.$nuxt)
+ const nuxtDetected = !!(window.__NUXT__ && window.$nuxt)
|
and meeeee ,,, but i'm using: |
Version
6.1.3
Browser and OS info
Chrome 99.0.4844.74 / 5.15.28-1-MANJARO
Steps to reproduce
npm run dev
a vite projectopen
localhost:3000
What is expected?
The dev tools icon should turn to green and on the chrome dev tools there should be a vue tab
What is actually happening?
The vue dev tools icon stays gray, no vue tab on the chrome dev tools
It seems to me that sometimes it works, but I was not able to figure why and when
The text was updated successfully, but these errors were encountered: