I have the error in my code. The error says like this: v.context.$implicit is undefined
The problem is, sometimes it error, and sometimes it doesn’t… Can somebody expla
Most of the time, context.$implicit
refer in the template to a variable created with a "let" (like "let time of item.info").
The rest of the error ("is undefined") is the classic javascript error message for trying to use a undefined value like an object.
In your case, it probably happen when the variable thisDay
is not one of the key of timeinfo
. checking the exact line of the error will probably help finding the error in the html.