I fixed this by removing and adding the calendar to get the latest
quasar ext remove @quasar/qcalendar
quasar ext add @quasar/qcalendar
I fixed this by removing and adding the calendar to get the latest
quasar ext remove @quasar/qcalendar
quasar ext add @quasar/qcalendar
I fixed this by removing and adding the calendar to get the latest
quasar ext remove @quasar/qcalendar
quasar ext add @quasar/qcalendar
Quasar v2 upgrade problem with q-calendar
I upgraded to Quasar V2.
Quasar does not run since I’m getting a compilation error in q-calendar. It’s in the file calendar-daily.sass where there are sass compilation errors.
Is there an upgrade that has been missed? Maybe there’s a config option for the sass compiler?
@quasar/cli - 1.1.3
quasar - 1.15.2 – Build high-performance VueJS user interfaces (SPA, PWA, SSR, Mobile and Desktop) in record time
@quasar/app - 2.1.14 – Quasar Framework local CLI
@quasar/extras - 1.9.16 – Quasar Framework fonts, icons and animations
@quasar/quasar-app-extension-qcalendar - 2.5.0 – A Quasar App Extension for @quasar/quasar-ui-qcalendar
I found a solution if anyone hits the same issue…
Installed vue-print-nb from https://www.npmjs.com/package/vue-print-nb
Decluttered code sample…
<q-dialog>
<q-card >
<div id="print">
<q-btn v-print="'#print'" />
<MyComponent />
</div>
</q-card>
I’ve put some content into a q-dialog full screen page. This scrolls down off the bottom of the page. I want to print this but it only prints one page not the whole of the display onto multiple pages. Has anyone come across this?
Hi
I’ve setup jest for unit tests and added snapshots. Now I changed a component the test fails, as expected. But when I try to update the snapshot it doesn’t work.
$ quasar test --unit jest
snapshot failed from 1 test suite. Inspect your code changes or re-run jest with -u
to update them.
I tried…
$ quasar test --unit jest -u
$ quasar test --unit jest --u
$ quasar test --unit jest -update-snapshot
But the snapshot doesn’t get updated. I guess its something obvious I’m missing.