Small to-do list project being built using Vue3 and Quasar framework, based on the application developed in the tutorial available on the Make Apps with Danny channel.
yarn
# or
npm installquasar devAfter generate your electron app with the following command
quasar dev -m electron
#or
quasar build -m electronGo to your src-electron\electron-main.js and add the specified line below
mainWindow = new BrowserWindow({
/*
some code here
*/
autoHideMenuBar: true /* <-- add this line */,
webPreferences: {
/*
some code here too
*/
},
});quasar dev -m electronyarn lint
# or
npm run lintyarn format
# or
npm run formatquasar build -m electronquasar build