This commit is contained in:
syuilo
2024-08-24 17:27:53 +09:00
parent 5603f77ffe
commit 505874a971
4 changed files with 3 additions and 9 deletions

View File

@@ -136,9 +136,6 @@ const preventAppearFetchMoreTimer = ref<number | null>(null);
const isBackTop = ref(false);
const empty = computed(() => items.value.size === 0);
const error = ref(false);
const {
enableInfiniteScroll,
} = defaultStore.reactiveState;
const contentEl = computed(() => props.pagination.pageEl ?? rootEl.value);
const scrollableElement = computed(() => contentEl.value ? getScrollContainer(contentEl.value) : document.body);