I've been experimenting with https://github.com/Akryum/vue-virtual-scroller but I'm facing issues getting it to function properly. Can anyone point out what I might be doing incorrectly?
My server-side rendering uses pug / jade
and despite not encountering any error messages, the content doesn't seem to render...
Pug / Jade
#test
recyclescroller.scroller(:items='active_projects' :item-size='32' key-field='id' v-slot='{ item }')
.user
| {{ item.name }}
CSS
.user {
height: 32%;
padding: 0 12px;
display: flex;
align-items: center;
}
Javascript
Vue.component('RecycleScroller', VueVirtualScroller.RecycleScroller)
test = new Vue({
el: '#test',
data: {
active_projects : [{name : 'test'}]
}
})