纳入 FastAPI 后端、Vue 管理端、MCP 桥接与文档;通过 .gitignore 排除本地数据库与构建产物。 Co-authored-by: Cursor <cursoragent@cursor.com>
15 lines
350 B
Vue
15 lines
350 B
Vue
<script setup>
|
|
import { floatingWindows } from "../utils/sshScriptRunner";
|
|
import SshFloatingTerminalWindow from "./SshFloatingTerminalWindow.vue";
|
|
</script>
|
|
|
|
<template>
|
|
<teleport to="body">
|
|
<SshFloatingTerminalWindow
|
|
v-for="item in floatingWindows"
|
|
:key="item.sessionId"
|
|
:window-state="item"
|
|
/>
|
|
</teleport>
|
|
</template>
|