-
-
Save brunofmeurer/770efcaaf9e74ee8557627811dd89546 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div v-show="visualizacaoResumida"> | |
<q-field label="Valor fatura" > | |
<q-input v-model="item2.valor" color="secondary" class="q-pt-sm" prefix="R$" type="number"/> | |
</q-field> | |
<q-field label="Data do documento" > | |
<q-datetime class="data-padding pad-padding" v-model="item2.dataDocumento" type="date" format="MM/DD/YYYY" color="secondary"/> | |
</q-field> | |
<q-field label="Data de vencimento" > | |
<q-datetime class="data-padding pad-padding" v-model="item2.dataVencimento" type="date" format="MM/DD/YYYY" color="secondary"/> | |
</q-field> | |
<q-field label="Local de pagamento" > | |
<q-input v-model="item2.localPagamento" color="secondary" class="q-pt-sm"/> | |
</q-field> | |
<!--<q-field label="Instruções"> | |
<q-input | |
v-model="item2.instrucoes" | |
class="pad-padding" | |
type="textarea" | |
:max-height="100" | |
rows="6" | |
color="secondary" | |
/> | |
</q-field>--> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment