79548669

Date: 2025-04-01 12:48:39
Score: 2
Natty:
Report link

I encountered a similar issue and, while I can't fully explain why this works, I found that switching from double quotes (") to single quotes (') when importing the component resolved the problem for me.

Instead of:

import SectionOne from "components/MainPage/SectionOne.vue";

Do:

import SectionOne from 'components/MainPage/SectionOne.vue';

It seems like a small change, but for some reason, it worked in my case. Hopefully, this can help someone else facing the same issue!

Reasons:
  • Whitelisted phrase (-1): it worked
  • Has code block (-0.5):
  • Me too answer (2.5): facing the same issue
  • Low reputation (1):
Posted by: Loocer