My preference is for the
<v-card :loading="loading">...
However, I would like to modify the appearance from a linear progress bar to something like an overlay. I am aware that changing colors can be done by binding color instead of using boolean (true).
<v-card :loading="'red'">...
Is it possible to adjust the behavior in this way? Such as increasing the thickness of the bar or even better, displaying an overlay when loading=true
?