diff --git a/src/layouts/vehicle/vehicle.vue b/src/layouts/vehicle/vehicle.vue index 282133743..f32af0bfb 100644 --- a/src/layouts/vehicle/vehicle.vue +++ b/src/layouts/vehicle/vehicle.vue @@ -60,7 +60,7 @@ @@ -294,6 +294,15 @@ export default { else if (this.imageUrl == null && this.carId !== null) return false; else return true; }, + allDataRetrieved() { + return ( + !!this.selectedYear && + !!this.selectedMake && + !!this.selectedModel && + !!this.selectedStyle && + !!this.carId + ); + }, }, methods: { getVehicle(year, make, model, style) {