Update OverlayPanel.vue

This commit is contained in:
syuilo 2026-05-31 13:28:12 +09:00
commit 6e763d4daa

View file

@ -31,8 +31,9 @@ SPDX-License-Identifier: AGPL-3.0-only
<script lang="ts" setup>
import { computed, defineAsyncComponent, nextTick, onMounted, onUnmounted, ref, shallowRef, useTemplateRef, watch } from 'vue';
import { deviceKind } from '@/utility/device-kind.js';
const isMobile = true;
const isMobile = deviceKind === 'smartphone' || deviceKind === 'tablet';
const props = defineProps<{
title: string;