I was making a ssr vue app using gridsome. And I had a loader for the app which got off after I fetched the data from a api. But gridsome is not generating html for the actual content but only for the loading icon. How do I deal with that?
For further actions, you may consider blocking this person and/or reporting abuse
Top comments (3)
Update: I have found a workaround i.e. to not use
v-if
instead usedisplay: none;
to hide the main element.If you aren't, use
v-show
instead.yeah v-show can do the trick and it will set a display:none to the element