Toggle QSpinner Animation?
-
Is is there a trick to start and stop q-spinner animation on click?
-
you’ll first have to at ‘clickable’ attribute to the spinner and then @click
<q-spinner clickable @click="doSomething" color="primary" size="3em" />
then you have to disable the spinner itself. Here are some examples:
https://codepen.io/jjdewitt/pen/XJRqNK
https://stackoverflow.com/questions/46672625/how-to-stop-an-svg-animation
-
Oh, Cool! Thank you very much!