From 02ee8628217955770d37afd142b5d6afc96cc31a Mon Sep 17 00:00:00 2001 From: mertsincan Date: Wed, 30 Aug 2023 10:49:17 +0100 Subject: [PATCH] Fixed #4348 - VirtualScroller: Unstyled mode is removing needed classes for core functionality --- components/lib/virtualscroller/BaseVirtualScroller.vue | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/components/lib/virtualscroller/BaseVirtualScroller.vue b/components/lib/virtualscroller/BaseVirtualScroller.vue index 59c56ce40..fa11bc717 100644 --- a/components/lib/virtualscroller/BaseVirtualScroller.vue +++ b/components/lib/virtualscroller/BaseVirtualScroller.vue @@ -152,13 +152,13 @@ export default { default: false } }, - css: { - loadStyle - }, provide() { return { $parentInstance: this }; + }, + beforeMount() { + loadStyle(); } };