Good night @Pedro, I’m trying to create the input fields dynamically, but when I type something and leave the input the information disappears, can you help me?
<q-input
dense
v-for="(item, id) in items"
:key=“id”
:v-model=“item.model”
:label=“item.label”
:type=“item.type”
input-class=“text-grey-7 q-pa-xs text-left”
> </q-input>
items: [
{ id: '1', model: 'nome_campo1', label: 'Novo Campo 1', type: 'text' },
{ id: '2', model: 'nome_campo2', label: 'Novo Campo 2', type: 'text' },
{ id: '3', model: 'nome_campo3', label: 'Novo Campo 3', type: 'text' },
{ id: '4', model: 'nome_campo4', label: 'Novo Campo 4', type: 'text' },
],