vue-virtual-scroller
vue-virtual-scroller copied to clipboard
Disable RENDER_FUNCTION to to work with vue compat
Hello!
We are using your package at Crisp and recently we started to migrate our project to Vue 3 using @vue/compat.
During the migration process, we discovered that DynamicScrollerItem is rendered using the compatibility renderer.
Disabling RENDER_FUNCTION fixes the problem
I can tell its working, added locally into DynamicScrollerItem
compatConfig: {
RENDER_FUNCTION: false
},
and its working, @Akryum can we please have this one merged, I would appreciate that :)
I think you can import DynamicScrollerItem and re-export a modified version
import { DynamicScrollerItem } from 'vue-virtual-scroll'
DynamicScrollerItem.compatConfig = {...}
export const CompatDynamicScrollerItem