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 install
quasar dev
After generate your electron app with the following command
quasar dev -m electron
#or
quasar build -m electron
Go 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 electron
yarn lint
# or
npm run lint
yarn format
# or
npm run format
quasar build -m electron
quasar build