-
-
+
+
+
+
+
+
+
{
vm.years = resultMap.yearQuestionInitialData;
vm.setCmsContent(resultMap.cmsContent);
- vm.$refs.yearQuestion.initializeComponent(
- resultMap.yearQuestionInitialData
- );
- vm.$refs.makeQuestion.initializeComponent(
- resultMap.makeQuestionInitialData
- );
+ // vm.$refs.VehicleQuestion.initializeComponent(
+ // resultMap.yearQuestionInitialData
+ // );
+ // vm.$refs.makeQuestion.initializeComponent(
+ // resultMap.makeQuestionInitialData
+ // );
- vm.$refs.modelQuestion.initializeComponent(
- resultMap.modelQuestionInitialData
- );
- vm.$refs.styleQuestion.initializeComponent(
- resultMap.styleQuestionInitialData
- );
+ // vm.$refs.modelQuestion.initializeComponent(
+ // resultMap.modelQuestionInitialData
+ // );
+ // vm.$refs.styleQuestion.initializeComponent(
+ // resultMap.styleQuestionInitialData
+ // );
});
},
@@ -121,16 +137,18 @@ export default {
const parsedYearIndex = parseInt(yearIndex);
this.mainStore.updateVehicleYear( this.years[parsedYearIndex] );
- this.$refs["makeQuestion"].getNewValues();
+ this.$refs["VehicleQuestion"].getNewValues();
},
selectedMake(make) {
this.mainStore.updateVehicleMake( make );
- this.$refs["modelQuestion"].getNewValues();
+ this.$refs["VehicleQuestion"].getNewValues();
+ //this.$refs["modelQuestion"].getNewValues();
},
selectedModel(model) {
this.mainStore.updateVehicleModel( model );
- this.$refs["styleQuestion"].getNewValues();
+ this.$refs["VehicleQuestion"].getNewValues();
+ //this.$refs["styleQuestion"].getNewValues();
},
selectedStyle(style) {
this.mainStore.updateVehicleStyle( style );
@@ -165,19 +183,19 @@ export default {
},
async updateStyleValues() {
return await this.mainStore.getVehicleStyles();
- }
- },
-
+ },
+ },
components: {
- yearQuestion,
- makeQuestion,
- modelQuestion,
+ // yearQuestion,
+ // makeQuestion,
+ // modelQuestion,
siteHeader,
siteSubHeader,
vehicleBanner,
siteFooter,
Form,
- styleQuestion,
+ VehicleQuestion
+ //styleQuestion,
},
};