[Vue warn]: Error in render: "TypeError: Cannot read property 'length' of undefined
Hi, I am making a simple quiz with laravel and vue js but i got error app.js:39679 [Vue warn]: Error in render: "TypeError: Cannot read property 'length' of undefined
Anybody please help me to solve this error
following is my Quizomponent.vue.
You are repeatedly trying to access quiz.questions.length. quiz.questions doesn't exist until you have loaded it in your fetchQuizList method but it still tries to access it before that.
Either create an empty array
quiz: {
questions:[],
},
or wrap everything in a v-if until loading finished.