|
|
@@ -61,14 +61,29 @@ |
|
|
|
|
|
|
|
<section class="radios form"> |
|
|
|
<h3>Loan Type</h3> |
|
|
|
<input type="radio" name="loan_type" value="conv" v-model="loans[sel].type" |
|
|
|
<input type="radio" |
|
|
|
name="loan_type" |
|
|
|
value="conv" |
|
|
|
@change="(e) => $emit('update:loanType', e.target.value)" |
|
|
|
> |
|
|
|
<label>Conventional</label> |
|
|
|
<input type="radio" name="loan_type" value="fha" v-model="loans[sel].type"> |
|
|
|
<input type="radio" |
|
|
|
name="loan_type" |
|
|
|
value="fha" |
|
|
|
:checked="loans[sel].type == 'fha'" |
|
|
|
@change="(e) => $emit('update:loanType', e.target.value)"> |
|
|
|
<label>FHA</label> |
|
|
|
<input type="radio" name="loan_type" value="va" v-model="loans[sel].type"> |
|
|
|
<input type="radio" |
|
|
|
name="loan_type" |
|
|
|
value="va" |
|
|
|
:checked="loans[sel].type == 'va'" |
|
|
|
@change="(e) => $emit('update:loanType', e.target.value)"> |
|
|
|
<label>VA</label> |
|
|
|
<input type="radio" name="loan_type" value="usda" v-model="loans[sel].type"> |
|
|
|
<input type="radio" |
|
|
|
name="loan_type" |
|
|
|
value="usda" |
|
|
|
:checked="loans[sel].type == 'usda'" |
|
|
|
@change="(e) => $emit('update:loanType', e.target.value)"> |
|
|
|
<label>USDA</label> |
|
|
|
</section> |
|
|
|
|
|
|
@@ -291,7 +306,7 @@ export default { |
|
|
|
'update:loanType', |
|
|
|
'update:loanTerm', |
|
|
|
'update:loanProgram', |
|
|
|
'update:ltv' |
|
|
|
'update:ltv', |
|
|
|
], |
|
|
|
data() { |
|
|
|
return { |
|
|
|