Vue.jsの解説
Vue.jsからの質問です。
下記のコードの「 return this.questions[this.questionIndex];」
の自分の理解が、「Vueインスタンスの、questionsデータを指定して、......」
までしか理解できなかったのですが、[this.questionIndex]は何を表しているのでしょうか?
new Vue({
el: "#app",
data:{
questionIndex: 0,
questions: [
{
question: "gifted child",
answers: ["天才児","才能","贈り物"],
answer: 0
}
],
},
computed: {
currentQuestion: function() {
return this.questions[this.questionIndex];
}
},
0