Create a Quasar Electron Vue app
How to port a Vue app to Desktop with Electron
Sat Jun 19 2021
Running the Desktop version
As you know Quasar app is a web app, it is not meant to desktop or mobile, but with the reactivity of components and controls , it can be much like a desktop app.
With the help of Electron we can build a version for desktop, no matter you are using Mac or Window.
To do this we need electron installed. Quasar CLI will automatically do it for us. For now just hit the terminal with the following command
quasar dev -m electron
This will create the electron project for your app and instantly build executable , also launch app, with developer tools enabled.
Comments