fix(sftp): use Nuxt auto-import names SftpFileTree/SftpFileEditor
This commit is contained in:
parent
aa1bbb28c4
commit
a9702795a4
@ -168,14 +168,14 @@ const breadcrumbs = computed(() => {
|
|||||||
|
|
||||||
<!-- File tree area — either editor or directory listing -->
|
<!-- File tree area — either editor or directory listing -->
|
||||||
<div class="flex-1 min-h-0 overflow-hidden">
|
<div class="flex-1 min-h-0 overflow-hidden">
|
||||||
<FileEditor
|
<SftpFileEditor
|
||||||
v-if="fileContent"
|
v-if="fileContent"
|
||||||
:file-path="fileContent.path"
|
:file-path="fileContent.path"
|
||||||
:content="fileContent.content"
|
:content="fileContent.content"
|
||||||
@save="handleSave"
|
@save="handleSave"
|
||||||
@close="fileContent = null"
|
@close="fileContent = null"
|
||||||
/>
|
/>
|
||||||
<FileTree
|
<SftpFileTree
|
||||||
v-else
|
v-else
|
||||||
:entries="entries"
|
:entries="entries"
|
||||||
:current-path="currentPath"
|
:current-path="currentPath"
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user