@@ -95,12 +107,14 @@ export default {
type: Object,
default: () => ({
streetAddress: "",
+ apartmentNumberOrBusinessName: "",
city: "",
state: "",
- zipCode: "",
+ zipCode: "",
}),
- },
+ },
validationRules: String,
+ captureApartmentNumberOrBusinessName: false,
},
data() {
return {
@@ -180,6 +194,11 @@ export default {
this.$emit("update:modelValue", newValue);
},
},
+ showApartmentNumberOrBusinessNameField: {
+ get: function () {
+ return this.captureApartmentNumberOrBusinessName;
+ },
+ }
},
methods: {
setupAddressLookup() {