vuetify_set_unit_price_automatically_#37 #38

Merged
mono merged 3 commits from vuetify_set_unit_price_automatically_#37 into main 2024-09-28 19:37:50 -05:00
Showing only changes of commit 1519453591 - Show all commits

View File

@ -59,6 +59,7 @@
label="Precio"
type="number"
:rules="[rules.required]"
prefix="$"
required
readonly
></v-text-field>
@ -74,9 +75,12 @@
</v-col>
<v-col>
<v-text-field
type="number"
:value="calculateSubtotal(line)"
label="Subtotal"
prefix="$"
readonly
disable
></v-text-field>
</v-col>
<v-col>
@ -93,6 +97,7 @@
<v-text-field
:value="calculateTotal"
label="Total"
prefix="$"
readonly
></v-text-field>
<v-btn @click="submit" color="green">Comprar</v-btn>