Use Quasar to build an Android app
Posted on
by Kevin FoongQuasar is a Vue framework that makes it easy to build hybrid mobile apps using Cordova. In this introduction I'll provide an overview on how to build a simple Android app. Note that the Quasar website already has quite good documentation on how to get started. Here I will outline my notes and any difficulties I encountered along the way during my own set up. Hopefully this tutorial will help someone get started in developing mobile apps.
I also assume that you already have some Vue knowledge.
Step 1 - Install Quasar CLI and create a project in the folder "myquasar"
npm install -g @quasar/cli
quasar create myquasar
Read more ...