types(utils): isHidden ref param maybe undefined

This commit is contained in:
chenjiahan 2020-10-09 20:33:41 +08:00
parent 14d2826cc7
commit bfdc6f6b4e

View File

@ -1,7 +1,13 @@
import { unref, Ref } from 'vue';
export function isHidden(elementRef: HTMLElement | Ref<HTMLElement>) {
export function isHidden(
elementRef: HTMLElement | Ref<HTMLElement | undefined>
) {
const el = unref(elementRef);
if (!el) {
return false;
}
const style = window.getComputedStyle(el);
const hidden = style.display === 'none';