Devtool inspection is not available because it's in production mode or explicitly disabled by author

在浏览器安装vue Devtools插件后显示
Vue.js is detected on this page. Devtools inspection is not available because it’s in production mode or explicitly disabled by the author

原因:用的是production mode(生产版本)的vue.min.js,而不是开发版本的vue.js

解决办法
下载一个开发版本的vue.js, 然后把js文件夹里的vue.min.js(生产版本)换成vue.js,
同时在导入script时把你用的vue.min.js换成vue.js

  <script src="js/vue.min.js"></script>

换成

  <script src="js/vue.js"></script>

猜你喜欢

转载自blog.csdn.net/weixin_43873005/article/details/89475213