Skip to main content

All Questions

Tagged with
0 votes
0 answers
74 views

How to increase software rendering video performance in Vue js?

Let's assume I have a thousand of object array which includes .mp4 came from cloudinary. I've also tried to transform into .webm type to compress file sizes but somehow it still didn't much reduce the ...
Gumrai Aung's user avatar
0 votes
1 answer
1k views

Trying to use Virtual Scroller in Vue 3 But the items are buffering

I need to display a large number of data but I can't make the virtual scroller work <RecycleScroller class="scroller" page-mode :items="store.clinicData.value[store....
fico's user avatar
  • 23
0 votes
1 answer
895 views

How can I use vue-virtual-scroller with vueuse useInfiniteScroll?

What I want to show is that I want to show several components with variable sizes using infinite scrolling and virtual scrolling. So I try to use vue-virtual-scroller and useInfiniteScroll. But when I ...
antonio99's user avatar
0 votes
1 answer
236 views

How to register a plugin to use inside a component library running by storybook?

I want to use a vue-virtual-scroller in my component library which requires to be registered as a plugin via app.use() method. However, the components lib has not app instance due it is running by ...
pepeevich's user avatar
  • 323
0 votes
0 answers
1k views

Implementing virtual scrolling in Vue.js

I'm trying to implement virtual scrolling behavior using vue-virtual-scroller library. First off, I tried to use 'useVirtualList' component from VueUse library, but I couldn't find my way in there. ...
batt.o's user avatar
  • 1
5 votes
1 answer
4k views

Vue - virtual scroll for table

I'd like you to recommend me a package that can take advantage of a virtual scroll / recycler scroll for a table in Vue. I tried these two libraries: https://github.com/tangbc/vue-virtual-scroll-list ...
Dusan's user avatar
  • 3,410
6 votes
1 answer
15k views

How to make virtual scroll?

Please teach me how to make a virtual scroll. I use HTML, JS, Vue. I tried using vue-virtual-scroll, but since it is difficult to change it to the function I want, I'm going to make a basic part and ...
tail's user avatar
  • 105
4 votes
1 answer
3k views

How to use vue-virtual-scroller with Element UI Table?

I use Element UI Table in a project and wondering how I can use vue-virtual-scroller with it. I couldn't figure out a way because in all virtual-scroller examples I saw, it was expected(as expected) ...
Praveen Puglia's user avatar
0 votes
2 answers
992 views

When using vue-virtual-scroller where does content-tag and main-tag come from

I am trying to understand the vue virtual scroller. I noticed in the demo there are a couple HTML attributes it uses... <virtual-scroller v-if="scopedSlots" class="scroller" :item-height="...
Jackie's user avatar
  • 23.1k