feat: add rust browser terminal prototype

This commit is contained in:
zhangheng
2026-06-08 16:34:13 +08:00
commit fd056ce502
43 changed files with 10312 additions and 0 deletions

16
app/src/pages/terminal.rs Normal file
View File

@@ -0,0 +1,16 @@
use leptos::prelude::*;
use crate::components::layout::{AdminShell, Breadcrumb};
use crate::terminal::TerminalPanel;
#[component]
pub fn TerminalPage() -> impl IntoView {
view! {
<AdminShell>
<Breadcrumb current="浏览器终端" />
<section class="cowa-work-surface terminal-page-shell">
<TerminalPanel />
</section>
</AdminShell>
}
}