quasarframework / quasar

Quasar Framework - Build high-performance VueJS user interfaces in record time
https://quasar.dev
MIT License
25.71k stars 3.49k forks source link

electron doesn't install vue devtools #9757

Closed fprijate closed 2 years ago

fprijate commented 3 years ago

In V2 there is no installation of vue_ devtools. In V2 missing code from V1 ,electron-main.dev.js :

import installExtension, { VUEJS3_DEVTOOLS } from 'electron-devtools-installer'; import { app, BrowserWindow } from 'electron';

app.whenReady().then(() => { // allow for a small delay for mainWindow to be created setTimeout(() => { // Install electron-debug with devtron electronDebug({ showDevTools: false });

// Install vuejs devtools
installExtension(VUEJS3_DEVTOOLS)
  .then((name) => {
    console.log(`Added Extension: ${name}`);

.....

rstoenescu commented 2 years ago

Hi,

This is not a bug. It now needs to be installed manually.