packages/docs/src/guide/faq.md
In case your browser doesn't have our browser extension available, we made a standalone Vue devtools application. Get it now!
Fixing "Download the Vue Devtools for a better development experience" console message when working locally over file:// protocol:
Here are some troubleshooting steps to help you if you don't the Vue devtools in your browser:
prod version of Vue on CDN__VUE_PROD_DEVTOOLS__ environment variable for Vue 3 when using a bundler like Webpack (more info).Make sure your data is used somewhere in your templates. Vue uses a lazy reactivity system for performance reasons, so the devtools could read some component data but Vue might not trigger updates on it as you would expect.
You can also click on the Force refresh button at the top of the devtools to do a manual refresh of the component data.
By default, the devtools will try to take screenshots of your application when something happens on the Timeline. But it can fail for various reasons (such as undocking the devtools pane on Chrome). In that case, you can turn the screenshots off by opening the 'More' menu on the top right of the devtools (three vertical dots).
The new Vue devtools feature a powerful public API so that package authors can integrate with the devtools (for example vuex or pinia). Since great power comes with great responsibility, you can disable specific permissions of a plugin, or even turn it off entirely, by going to the 'More' menu (three vertical dots on the top right), and then 'Devtools plugins...'.
This feature needs some setup in your project to work correctly. See here for more information.
See installing the previous version for more information.