new maps

This commit is contained in:
2024-11-24 17:34:41 +00:00
parent eb6abbb97d
commit 641938f7e4
38 changed files with 1241 additions and 228 deletions

View File

@@ -46,7 +46,6 @@ function loadFilePreview(file: VirtualFile){
const dragging = ref(false);
function onDragStart(){
console.log('dragstart');
dragging.value = true;
}
@@ -57,9 +56,7 @@ function onDragLeave(event) {
}
function onDragEnd(){
console.log('dragend');
dragging.value = false;
showPreview();
}
window.addEventListener('dragend', onDragEnd, {passive: true});