q-collapsible dynamic data title?
-
Is it possible (instead of hand coding labels like ‘First’, ‘Second’, etc) to make the label for a q-collapsible a dynamic data (or computed even) attribute?
-
Bind a scope variable to the
title
property. Same applies for any Quasar components properties.<q-collapsible :title="someVar" ....>
-
Thanks! I will try that.