谷歌浏览器当中使用vue devtools时,无法启动解决办法;
报错信息1:
错误提示: Vue.js is detected on this page. Devtools inspection is not available because it’s in production mode or explicitly disabled by the author.
解决办法: 在入口文件加入vue.config.devtools = true; (开启这个功能即可)
排查原因:
1、查看是否引入的是vue.min.js,vue.min.js是默认关闭调试的,改为index文件引入vue.js才能使用vue-devtools。
2、在chrome的扩展程序页面,需要勾选vue-devtools的“允许访问文件地址”“收集各项错误”项。
3、如果你是在chrome商店里安装的vue-devtools,那么需要到这个扩展的安装路径下找到manifest.json文件,把其中的"persistent": false,需改为:true。
4、在你的入口文件里加上一行Vue.config.devtools = true。