[web] Add title option for button control

This commit is contained in:
Alain Nussbaumer 2025-03-15 10:36:44 +01:00
parent a968401d9f
commit 3cb26a8b77

View File

@ -6,6 +6,7 @@
>
<mdicon v-if="button.icon" class="icon" :name="button.icon" size="16" />
<span v-if="button.key" v-text="$t(button.key)" />
<span v-if="button.title" v-text="button.title" />
</button>
</template>