Spaces:
Build error
Build error
File size: 342 Bytes
670a607 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
export default {
start(key) {
this.questionManager
.restartQuest()
.getNextQuestion(key);
return this;
},
next(key) {
this.questionManager
.getNextQuestion(key);
return this;
},
isLast() {
return this.questionManager.isLastQuestion();
},
}; |