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