此模式暂时不可用。
import Rater from ‘@theme/Rater’
便利性 | |
---|---|
扩展性 | |
性能 | |
安全 |
进度:
- 访问 GL 上下文
- 分离关注
缺点:
- 极其复杂
描述
Multiwin 允许你拥有多个窗口,其中一些可能是基于GL的。图表
import Mermaid, { colors } from ‘@theme/Mermaid’
H H==>F H==>G subgraph WEBVIEW F end subgraph GLUTIN G end subgraph RUST A end A[Binary] F[Window] G[GL Window] H{Bootstrap} style GLUTIN stroke:${colors.blue.dark},stroke-width:4px style RUST fill:${colors.orange.light},stroke:${colors.orange.dark},stroke-width:4px style WEBVIEW fill:${colors.blue.light},stroke:${colors.blue.dark},stroke-width:4px`} />配置
这里是您需要添加到您的 tauri.conf.json 文件的内容:
“tauri”: { “embeddedServer”: { “active”: false // 不使用本地服务器 }, “allowlist”: { // 所有API的值默认为false “event”: true, // 启用消息绑定API } }