Add no-vin option

This commit is contained in:
Chloe Herd 2024-06-13 16:48:01 -04:00
parent c5838a0184
commit 26dead5f3e
2 changed files with 7 additions and 0 deletions

View file

@ -2,6 +2,7 @@ const vinLookupMethodSelections = {
MANUALVIN: "ManualVin",
LICENSEPLATE: "LicensePlate",
HOMEADDRESS: "HomeAddress",
DECLINE: "Decline",
};
export { vinLookupMethodSelections };

View file

@ -323,6 +323,12 @@ export default {
this.$route
);
}
if (this.selectedVinLookupMethod === vinLookupMethodSelections.DECLINE) {
return this.$router.navigateWithSaving(
this.navigationScenarios.SELECTED_NO_VIN,
this.$route
);
}
},
},
computed: {