types(@vant/use): useScrollParent el can be undefined

This commit is contained in:
chenjiahan 2020-10-09 20:27:51 +08:00
parent 0b9a6973d0
commit 767ca80499

View File

@ -38,7 +38,7 @@ function getScrollParent(el: Element, root: ScrollElement = window) {
return root;
}
export function useScrollParent(el: Ref<Element>) {
export function useScrollParent(el: Ref<Element | undefined>) {
const scrollParent = ref();
onMounted(() => {