Hi,
While we wait for @rstoenescu to issue a complete guide, here’s a starting point for all of us impatient dudes who want to port a 0.13.x app to 0.14.
npm update -g quasar-cli
quasar init 'default#beta' FOLDERNAME
(will create a new folder with 0.14beta basics)cd FOLDERNAME
npm i
- Manually move your 0.13 code into that folder structure. Repeat step 4 once all your dependencies are set up.
- Check the beginners intro and the beta docs, and learn about using components and tree-shaking.
- Go ahead and apply what you learned.
quasar dev
: check for any components still missing, adjust imports accordingly, rinse and repeat until your app starts and displays correctly.
To include icons you can now skip the respective CDNs and use quasar-extras, like this:
npm i --save quasar-extras
, then use it like this.
If you have used animations in your code, take a look at this.
Since the beta is still being updated several times daily, before running to github or gitter to report a problem, please make sure you have the LATEST 0.14 version by running:
npm update quasar-framework
from within your app folder (same for quasar-extras).