Vue-devtools: vue.js not detected

Created on 15 Sep 2020  路  6Comments  路  Source: vuejs/vue-devtools

Version

5.3.3

Browser and OS info

Chrome 85 / Windows 10

Steps to reproduce

The below line of code properly executed in Chrome. However, the dev tool doesn't recognize Vue.

What is expected?

Vue tab in Chrome Developer Tool

What is actually happening?

vue.js not detected

Most helpful comment

Solution is in the docs: https://v3.vuejs.org/guide/migration/introduction.html#devtools-extension

-> install the beta extension and it'll work ;)

All 6 comments

I am seeing/having the same problem in Chrome. Using cli/webpack bundling and just the local development server.

I am using Vue.js 3 and Firefox, this is happening to me too

Solution is in the docs: https://v3.vuejs.org/guide/migration/introduction.html#devtools-extension

-> install the beta extension and it'll work ;)

first things first, install vue devtools from manual.
and then close the browser.
finally restart browser and check your vue development environment.
regards.

This issue can be closed

If you are taking the Vue Mastery: Intro to Vue 3 course (linked from the official docs), and the extension is still not detecting Vue.js in the course files, try this:

  1. Install the beta extension as mentioned by @ttntm.
  2. Disable the stable (non-beta) version of the extension if you have it installed.
  3. In the HTML course files, replace:

    <script src="https://unpkg.com/[email protected]/dist/vue.global.js"></script>

    with:

    <script src="https://unpkg.com/vue@next"></script>

This is the library currently recommended in the official docs "for prototyping or learning purposes" (but _not_ production use).

Was this page helpful?
0 / 5 - 0 ratings

Related issues

jonathantizard picture jonathantizard  路  4Comments

mitramejia picture mitramejia  路  3Comments

stiltet picture stiltet  路  3Comments

pxwee5 picture pxwee5  路  3Comments

phromo picture phromo  路  4Comments