Guillaume Chau
Guillaume Chau
Seeing this too happen in one of our test using Cypress component testing
It seems to happen if there is another store created somewhere in the code (although not used in the app).
Please provide a reproduction of your issue so I can run it and find where the problem is.
What happens if you click on the refresh button on the top right?
@m4heshd I guess you are talking about something different. If you have an issue with component data not updating automatically, please open a new issue. In the meantime, you can...
And I still don't have a valid reproduction...
It would be great t have vue-language-server parse the JSDoc inside the components 😄
Looks like the virtual scroller is trying to render everything at once. Try setting a fixed height in pixels to it to troubleshoot.
It sets the height of the items, but if the scroller doesn't have height, it will try to render everything since it's not scrolling.
I think you can import `DynamicScrollerItem` and re-export a modified version ```js import { DynamicScrollerItem } from 'vue-virtual-scroll' DynamicScrollerItem.compatConfig = {...} export const CompatDynamicScrollerItem ```