How to install an advance preview of Quasar Framework version 0.15?
-
How to install an andvance preview of Quasar Framework version 0.15?
Follow the instructions below, the
git clone
download will create a directory./quasar
. An alternative to thegit clone
command is to download the branch as a zip directly from GitHub.git clone -b dev --single-branch
https://github.com/quasarframework/quasar.git
cd quasar
npm install
quasar dev
Enjoy!
-
Thanks for the info!!!
-
Spoiler alert
-
FYI, for some of us, running
quasar dev
after install doesnโt work. You can runnpm run dev
instead. -
To be clear: if after installing,
quasar dev
does not work for you, trynpm run dev
. Also, after installing, you can donpm run build
, and copy the new dist folder to yournode_modules\quasar-framework
folder, (donโt forget to copy thepackage.json
,icons
andi8n
folders as well). This will allow you to use it in an existing project.[Edit: it is best to create a Simlink from your
node_modules/quasar-framework
folder to thedist
folder of your cloned v0.15. This way, you can get the latest changes from Github, and then simply rebuild v.015. The magic of simlinks!]Be prepared for updating your existing Vue files to use the new/updated components. Make a backup of your project first