You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This exact thing happened to me. For me it was that I had <div v-if="$device.isMobile" class="header-padding"/>
when I changed it to <div v-if="$device.isMobile" class="header-padding><!-- --></div>
the error disappeared but I'm having another problem where it behaves differently in production vs in development :(
@Horsetoast Thank you. I suffered the same problem, and the solution was to not auto-close native tags.
So <div v-if="$device.isMobile" props="here" /> doesn't compile well, whereas <div v-if="$device.isMobile" props="here" ></div> did.
Makes total sense, IMO, as native tags should be closed according to standards.
I keep getting this issue when showing/hiding elements using v-if="", works during dev but not after generate.
Any idea why?
The text was updated successfully, but these errors were encountered: