Kaz

Results 2 issues of Kaz

复现方法: 1. 在依赖管理安装 `[email protected]`,再安装一个非自带依赖,如 `vue@latest` 2. 重启服务 3. 查看容器信息,发现 app-service 崩溃了,崩溃日志如下 ![image](https://user-images.githubusercontent.com/54239670/170858949-93416544-bc9c-44fc-a2e0-d87e55e3aed5.png) 发生这个问题的原因: `multer` 是 `app-service` 启动服务所需要的依赖,当使用依赖管理安装另一个版本的 `multer` 时,这个另一个版本的 `multer` 会覆盖原来自带的 `multer`,导致启动失败。 一些解决方案: 1. 使用依赖别名,给 `app-service` 运行需要的依赖全部加上别名 ```shell npm install...

### Describe the bug For example: ``` const q1 = useRouteQuery("q1", "3"); ``` When I change the value of `g1`: ``` q1.value = "4"; ``` The value is not updated...