fixed intput theming

This commit is contained in:
Tim Gröger 2023-05-15 10:32:31 +02:00
parent ba7013ac67
commit f0e07138b1
1 changed files with 11 additions and 4 deletions

View File

@ -30,10 +30,17 @@
<q-table :title="title" :rows="rows" row-key="id" :columns="columns"> <q-table :title="title" :rows="rows" row-key="id" :columns="columns">
<template #top-right> <template #top-right>
<q-input ref="input" v-model="actualType.name" :rules="rules" dense placeholder="Neuer Typ"> <q-input
<slot name="after" ref="input"
><q-btn color="primary" icon="mdi-plus" title="Hinzufügen" @click="addType" v-model="actualType.name"
/></slot> :rules="rules"
dense
filled
placeholder="Neuer Typ"
>
<template #after
><q-btn color="primary" icon="mdi-plus" title="Hinzufügen" round @click="addType"
/></template>
</q-input> </q-input>
</template> </template>
<template #body-cell-actions="props"> <template #body-cell-actions="props">