Skip to content
Advertisement

Vue Devtools Not Loading With Vue Electron Builder

I’m creating an Electron / Vue application, and I cannot get the Vue Devtools to load in the Electron app window. This is my first time using Electron with Vue, and I’m not sure if there’s a dependency issue that I’m not aware of.

I came across this Github issue, but my versions of Electron and vue-cli-plugin-electron are higher, and already include the updated code that is being discussed.

I also tried the following snippet (from here):

JavaScript

That caused everything to break.

The last major thing I tried was to use vue invoke electron-builder to reinvoke the generator, which was suggested in the docs

However the problem still persists. Can someone take a look at my setup and let me know if there’s something obviously wrong?

Here is part of my package.json:

JavaScript

And here is my background.js file:

JavaScript

Advertisement

Answer

The production version of Vue DevTools doesn’t support Vue 3 yet.

In order to workaround this issue, you must install the Vue DevTools Beta instead.

Replace this:

JavaScript

With this:

JavaScript

See the discussion here.

UPDATE

You can now also just use the VUEJS3_DEVTOOLS constant like so:

JavaScript
User contributions licensed under: CC BY-SA
2 People found this is helpful
Advertisement