Skip to content

Commit

Permalink
Merge branch 'main' of https://gitee.com/AByte-L/book
Browse files Browse the repository at this point in the history
  • Loading branch information
labyte committed Nov 22, 2024
2 parents 6793172 + 2263a1d commit 96c66df
Show file tree
Hide file tree
Showing 2 changed files with 38 additions and 23 deletions.
51 changes: 30 additions & 21 deletions src/rust/tauri.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,30 @@



## 执行后不出现窗口

## 调试

### 前端调试

**第一种方式**:通过 `Ctr+shift+I` 来打开 `DevTools` 调试工具,和浏览器的 `F12` 调试浏览器相同

**第二种方式**:前端的调试可以通过点击链接在浏览器上进行渲染,按下 `F12` 来调试。

### 后端调试

根据 [Tauri 官网文档进行配置 ](https://tauri.app/zh-cn/develop/debug/vscode/)

## Vue

- 路由

## Element-plus

- 国际化


## 异常汇总
### 执行后不出现窗口

可能的原因是还没编译完,编译完会出现 `Finished`

Expand All @@ -33,29 +56,15 @@
Finished `dev` profile [unoptimized + debuginfo] target(s) in 1m 36s
```

### failed to read plugin permissions: failed to read file: 系统找不到指定

## 调试

### 前端调试

**第一种方式**:通过 `Ctr+shift+I` 来打开 `DevTools` 调试工具,和浏览器的 `F12` 调试浏览器相同

**第二种方式**:前端的调试可以通过点击链接在浏览器上进行渲染,按下 `F12` 来调试。

### 后端调试

根据 [Tauri 官网文档进行配置 ](https://tauri.app/zh-cn/develop/debug/vscode/)

## Vue

- 路由

## Element-plus

- 国际化
-
执行 `npm run tauri dev` 后 提示如下错误:

```
failed to read plugin permissions: failed to read file: 系统找不到指定
```

删掉 `target` 文件夹,重新运行


## 相关开源项目
Expand Down
10 changes: 8 additions & 2 deletions src/technology-stack/npm.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,16 +21,22 @@



使用 淘宝 镜像
(一)使用 淘宝 镜像

```shell
npm config set registry https://registry.npm.taobao.org/
```

使用 `cnpm`,‌这是淘宝提供的 `npm` 镜像,‌使用 `cnpm` 安装依赖通常会比使用 `npm` 快很多。‌例如,‌通过命令 `npm install -g cnpm --registry=https://registry.npm.taobao.org/` 来安装 `cnpm` ,‌然后使用 `cnpm install` 来安装包。‌
(二)使用 `cnpm`,‌这是淘宝提供的 `npm` 镜像,‌使用 `cnpm` 安装依赖通常会比使用 `npm` 快很多。‌安装cnpm命令

```shell
npm install -g cnpm --registry=https://registry.npm.taobao.org/
```

使用 `cnpm install` 来安装包,如:

```shell
cnpm install xxxx
```

## 错误解决
Expand Down

0 comments on commit 96c66df

Please sign in to comment.