Is there a way to add subtitle to QToolbarTitle?
-
I am migrating a project from v0.17 … and stuck on missing subtitle slot for QToolbarTitle. Is there other way to add subtitle to QToolbarTitle?
<q-toolbar-title> {{ model }} <div slot="subtitle">{{ name }}</div> </q-toolbar-title>
-
@Koleto something like this
<q-toolbar-title> <div class="column"> <div>Quasar Framework</div> <div class="text-subtitle1">Sub</div> </div> </q-toolbar-title>
-
Perfekt! Thank you!