Created by Divya Sonara
Quasar Framework is a framework build on top of Vue.js , that allows you to build Modern Website (SPA, PWA, SSR), Mobile App (iOS, Android), and Desktop App (Windows, MacOS, Linux)
“write code once and simultaneously deploy it.”
There are three ways to start using Quasar:
yarn global add @quasar/cli
# or
npm install -g @quasar/cli
Run the following command in your CLI:
yarn create quasar
# or
npm init quasar
Following this, you are going to be asked some questions. Here is my full configuration for the app we will be building.
Now we can move into the project folder and start up the application using the following commands:
cd folder_name
quasar dev
With the steps above complete, our app should be running on http://localhost:9000.
Quasar provides several app layout options to help you create responsive and flexible user interfaces.
Quasar is a popular UI library for Vue.js that provides a comprehensive set of pre-made components to help developers quickly build beautiful and responsive web applications.
Quasar's Style & Identity system allows developers to easily customize the look and feel of their web applications using predefined themes, CSS variables, and other powerful features.
MOBILE APP SETUP
quasar mode add capacitor
# and then
quasar dev -m capacitor -T [android|ios]
to get more details on this check: Mobile Apps
DESKTOP APP
quasar mode add electron
# or
quasar dev -m electron
to get more details on this check: Desktop Apps
PROGRESSIVE WEB APP
quasar mode add pwa
# or
quasar dev -m pwa
to get more details on this check: PWA Apps