Removed "initialValue" that shouldn't have been there

This commit is contained in:
Leah Schumann 2023-03-14 13:25:26 -04:00
parent 99f6ef3a4e
commit bcee963f9a

View file

@ -50,7 +50,6 @@
v-model="addressModel.state" v-model="addressModel.state"
ref="state" ref="state"
:options="stateOptions" :options="stateOptions"
initialValue="FL"
validationRules="state-required" /> validationRules="state-required" />
</div> </div>
<div class="col"> <div class="col">
@ -406,6 +405,11 @@ export default {
} }
}, },
}, },
modelValue: {
handler() {
this.setupAddressLookup();
},
},
}, },
components: { components: {
textboxQuestion, textboxQuestion,