网站后台管理方便吗,做企业策划的公司,导购分享网站模板,网站开发技术可行性有能力的可以看官方文档#xff1a;shell | Tauri Apps
就是使用这个api来打开指定的url链接#xff0c;要在tauri.config.json中配置打开这个api#xff1a; 然后在前端页面中导入使用#xff1a;
import { open } from tauri-apps/api/shell;
// opens the given URL o…
有能力的可以看官方文档shell | Tauri Apps
就是使用这个api来打开指定的url链接要在tauri.config.json中配置打开这个api 然后在前端页面中导入使用
import { open } from tauri-apps/api/shell;
// opens the given URL on the default browser:
await open(https://github.com/tauri-apps/tauri);
// opens the given URL using firefox:
await open(https://github.com/tauri-apps/tauri, firefox);
// opens a file using the default program:
await open(/path/to/file);