How to call Loader on version 0.15.1
-
Hi,
I use quasar version 0.15.1 but I can not call Loader for show loading -
Did you mean on loading of buttons? If so, remove the
loader
property onq-btn
(if it exists, because it is required in 0.14.9) and add aloading
property bound on adata
variable like this:<q-btn @click="btnLoading = !btnLoading" :loading="btnLoading"> LOAD <q-spinner-hourglass slot="loading"/> </q-btn> ... data () { return () { btnLoading: false } }