Hi dkr88,
Do you happen to have a sample Quasar 0.16 project with Typescript support working? Lack of out of the box support is killing us right now.
thanks!
jasen
Hi dkr88,
Do you happen to have a sample Quasar 0.16 project with Typescript support working? Lack of out of the box support is killing us right now.
thanks!
jasen
It actually hasn’t been simple at all. We had it square-pegged/round-holed for Quasar 0.14 but Quasar 0.16 has been a bit tricky.
I have managed to get it going though. Have a typescript project now with support for TS in .vue files, but also using external .ts files which I like a bit better.
Thanks!
Hi dkr88,
Do you happen to have a sample Quasar 0.16 project with Typescript support working? Lack of out of the box support is killing us right now.
thanks!
jasen
Did you ever get a working version? .15 or .16?
Is anyone else encountering the Google Chrome fuzzy fonts issue with Quasar screens? I can’t figure out a way around it. Research shows it something to do with the transform: translate(-50%, -50%); used in the fixed-center class.
Here’s an example: http://mycloudstatus.com/#/login
If you go to that page on Chrome the fonts look all fuzzy. Any other browser, looks fine.
Hi all –
What is the proper way to have a tooltip show when a user hovers over a toggle? We have a label, but hide the label when the screen real estate is too small. We want a tooltip to popup instead for the smaller screens. For some reason somethings like this:
<q-toggle v-model=“filtered” class=“lt-sm” color=“teal” label="" @input=“onToggleShowSubscribedOnly” title=“text”>
<q-tooltip>Show subscribed only</q-tooltip>
</q-toggle>
Only shows the tooltip when the toggle is clicked, not when hovered.
thanks!