disable native browser drag behavior on mobile version

This commit is contained in:
MaysWind
2026-03-05 23:17:27 +08:00
parent 54f61ecb18
commit cabe365907
+4
View File
@@ -181,6 +181,10 @@ onMounted(() => {
const languageInfo = getCurrentLanguageInfo();
initMapProvider(languageInfo?.alternativeLanguageTag);
});
document.addEventListener('dragstart', (e) => {
e.preventDefault();
}, true);
});
watch(currentNotificationContent, (newValue) => {