From 33fe6857dabff26a0cb30fb1b1f170e8a658a96b Mon Sep 17 00:00:00 2001 From: Jianqi Pan Date: Sat, 11 May 2024 02:55:20 +0900 Subject: [PATCH] fix(timeline): reduce warning (#661) --- .../src/runtime/plugins/view/FrameBox.vue | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/packages/devtools/src/runtime/plugins/view/FrameBox.vue b/packages/devtools/src/runtime/plugins/view/FrameBox.vue index 06c93f352..adec2e3e8 100644 --- a/packages/devtools/src/runtime/plugins/view/FrameBox.vue +++ b/packages/devtools/src/runtime/plugins/view/FrameBox.vue @@ -108,56 +108,56 @@ useEventListener(window, 'mouseleave', () => isResizing.value = false) class="nuxt-devtools-resize-handle nuxt-devtools-resize-handle-horizontal" :style="{ top: 0 }" @mousedown.prevent="isResizing = { top: true }" - @touchstart="() => isResizing = { top: true }" + @touchstart.passive="() => isResizing = { top: true }" />