fixed intput theming
This commit is contained in:
parent
ba7013ac67
commit
f0e07138b1
|
@ -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">
|
||||||
|
|
Loading…
Reference in New Issue