silv4b / todo-quasar

To-do app developed with vue3 and quasar framework.

Home Page:https://to-do-quasar.netlify.app

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Todo list with Quasar Framework (quasar-todo)

Netlify Status

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.

Install the dependencies

yarn
# or
npm install

Start the app in development mode (hot-code reloading, error reporting, etc.)

quasar dev

Remove/Hide menurbar from electron app (optional)

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
    */
  },
});

Start the app in development mode fot windows/linux

quasar dev -m electron

Lint the files

yarn lint
# or
npm run lint

Format the files

yarn format
# or
npm run format

Build the app for windows/lionux with electron

quasar build -m electron

Build the app for production

quasar build

Customize the configuration

See Configuring quasar.config.js.

About

To-do app developed with vue3 and quasar framework.

https://to-do-quasar.netlify.app


Languages

Language:JavaScript 50.0%Language:Vue 43.3%Language:HTML 4.2%Language:SCSS 2.4%