Would be cool have this one ‘setup’ as well:
https://github.com/antvis/f2
see also:
https://medium.com/@SimaZwx/https-medium-com-simazwx-introducing-f2-c44fb4e74c2d
Best posts made by MusicForMellons
-
RE: Add chartJS to Quasar
-
RE: change color of material icons
Yeah, setting these and adding to class works. Via css setting color to
.item > i.item-primary
also works. My problem was more of a ‘not working hot-reload thingy’ it seems. Thanks. -
How to upgrade to new version?
What is best way to upgrade/ migrate to new version of quasar? You suggested somewhere to do:
npm update quasar-frameworkTo me it seems this just updates the Node package, right? Whereas for upgrading to 0.9.1 there are different packages in package.json and also because of webpack 2 I think the whole build foldere scripts are probably changed…
So ‘how to do it properly?’ is my question.
-
RE: Testing
For e2e might consider Testcafe (in place of Nightwatch):
Pros:
easy install
complete test harness
javascript ES2016 with (async/await)
flexible selector system
smart assertions with retry policy
reports -
RE: testing in version 0.9.1
Ha! Next step they will make a Vue standard template with Quasar!
-
RE: Testing
@s.molinari And easier to setup: https://alligator.io/vuejs/components-flow/
-
support Material Design Icons!?
Maybe it would be nice to have this supported in Quasar as well?
https://materialdesignicons.com/I tried using this within Quasar:
https://www.npmjs.com/package/vue-material-design-iconsbut then the styling is off from the ‘normal’ quasar icons, and you would also have different html tags for the mdi icons.
-
RE: How to set AppFullscreen at pageload?
@krsyoung Looking into things I found it really is a browser thing (i.e. you can not have the screen always open at fullscreen and need the user interaction, or you have to go nuts hacking to every version etc.). I ended up ‘working around’ the problem. So no ‘real’ solution I’m afraid.
-
RE: 0.15 Notify with HTML
@akaryatrh No
this.$q.notify
does not work in vue file also not when set properly inquasar.config.js
withframework: { components: [ ], directives: [ ], plugins: [ 'Notify' ], },
Any idea why?