13 lines
438 B
JavaScript
13 lines
438 B
JavaScript
import { useMainStore } from "@/store";
|
|
import vehicleQuestionsMixin from "@/mixins/vehicle-questions-mixin";
|
|
|
|
export default {
|
|
methods: {
|
|
async navigateForwardWithSingleCarMatch() {
|
|
const result = await useMainStore().getPartsOrQuestions();
|
|
const partsOrQuestions = result.data.partsOrQuestions;
|
|
|
|
vehicleQuestionsMixin.methods.navigateForward(partsOrQuestions, this);
|
|
},
|
|
},
|
|
};
|