Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
最近 vue devtools 更新到了更新的版本。我大量使用 devtools 来检查我的 vuex 商店。更新后数据不再显示。数据在突变后更新,但未显示在 devtool 中。
有谁知道如何再次使用旧版本?
提前致谢!
所有版本都可以在他们的 Github 页面上找到:这里
下载您喜欢的版本,然后按照手动安装中的步骤进行操作
较新版本上有一个Settings选项卡,可让您始终保持 Veux 商店同步。您需要做的就是启用它。
Settings
您可以为 Chrome 安装旧版开发工具扩展。
查看有关文档的更多信息
在 bash 中,标准 (1) 和错误 (2) 输出可以通过以下方式重新路由和丢弃:
>/dev/null 2>&1
但是下面的例子做了一些不同的事情:
nohup myscript.sh >myscript.log 2>&1 </dev/null &
<