|
|
@@ -130,7 +130,7 @@ |
|
|
|
|
|
|
|
<label>Real Estate Tax Escrow (months)</label> |
|
|
|
<input :value="loans[sel].taxEscrow" |
|
|
|
@input="e => {loans[sel].taxEscrow = stripInt(e)}"> |
|
|
|
@input="e => $emit('update:taxEscrow', stripInt(e))"> |
|
|
|
<label>Real Estate Tax ($/month)</label> |
|
|
|
<input :value="loans[sel].tax" |
|
|
|
@input="(e) => $emit('update:tax', strip(e))"> |
|
|
@@ -253,7 +253,7 @@ export default { |
|
|
|
'update:mIncome', |
|
|
|
'update:transaction', |
|
|
|
'update:price', |
|
|
|
'update:propertyType', |
|
|
|
'update:property', |
|
|
|
|
|
|
|
// Loan specific emits |
|
|
|
'update:loanType', |
|
|
@@ -264,6 +264,12 @@ export default { |
|
|
|
'update:housingDti', |
|
|
|
'update:dti', |
|
|
|
'update:hoa', |
|
|
|
'update:interest', |
|
|
|
'update:interestDays', |
|
|
|
'update:hazardEscrow', |
|
|
|
'update:hazard', |
|
|
|
'update:taxEscrow', |
|
|
|
'update:tax', |
|
|
|
], |
|
|
|
data() { |
|
|
|
return { |
|
|
|