+
diff --git a/web/src/views/editor/Editor.vue b/web/src/views/editor/Editor.vue
index ea96cb0..ac90955 100644
--- a/web/src/views/editor/Editor.vue
+++ b/web/src/views/editor/Editor.vue
@@ -437,7 +437,7 @@ onUnmounted(() => {
-
+
{
:is-refreshing="isRefreshing"
@refresh="loadTree"
@select="handleSelect"
- @delete="confirm => dialogsRef?.openDelete(confirm)"
- @create="parent => dialogsRef?.openCreate(parent)"
+ @delete="(path: string) => dialogsRef?.openDelete(path)"
+ @create="(parent: string) => dialogsRef?.openCreate(parent)"
@download="handleDownload"
@move="handleMove"
- @rename="path => dialogsRef?.openRename(path)"
+ @rename="(path: string) => dialogsRef?.openRename(path)"
@duplicate="handleCopyFile"
@upload-archive="handleArchiveUpload"
@upload-files="handleFilesUpload"
/>
-
+
{{ selectedPath || '选择文件或文件夹进行操作' }}