[Solved] <q-btn> hint not possible
-
I want to to show some hint when put cursor on button, is that possible?
-
Hi @Stanley you can use tooltips for that.
https://quasar-framework.org/components/tooltip.html -
Example:
<q-btn icon="fas fa-chevron-circle-left" flat round color="teal-6" @click="setPrevDay"> <q-tooltip anchor="bottom middle" self="top middle">Previous day</q-tooltip> </q-btn> <q-btn @click="setNextDay" icon="fas fa-chevron-circle-right" flat round color="teal-6" > <q-tooltip anchor="bottom middle" self="top middle">Next day</q-tooltip> </q-btn>
-
@shone Thank you, Get it!
-
@hawkeye64 Thank you for the detail.
-
No problem. Happy to help when I can.