fix(ImagePreview): swipeItem may be undefined (#12818)

This commit is contained in:
inottn 2024-04-25 10:08:48 +08:00 committed by GitHub
parent 9dea0e9572
commit 01183e1208
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -255,6 +255,9 @@ export default defineComponent({
const checkClose = (event: TouchEvent) => {
const swipeItemEl: HTMLElement = swipeItem.value?.$el;
if (!swipeItemEl) return;
const imageEl = swipeItemEl.firstElementChild;
const isClickOverlay = event.target === swipeItemEl;
const isClickImage = imageEl?.contains(event.target as HTMLElement);