79200202

Date: 2024-11-18 13:58:26
Score: 1
Natty:
Report link

I've already found my answer, it's because my for loop was referencing the original static array and not the reactive one I've cloned.

So the v-for="(faq, index) in faqs" should have been: v-for="(faq, index) in filteredFaqs"

I knew it would have been something simple I just missed.

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Chobbit