Vue使用debugger
Posted 晨港飞燕
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Vue使用debugger相关的知识,希望对你有一定的参考价值。
vue开发时会遇到需要调试代码的情况,使用debugger可以很方便的进行debug.
1.找到eslintConfig文件
"rules":
"no-async-promise-executor": "off",
"no-unused-vars": "off",
"comma-dangle": "off",
"no-debugger": "off"
2.build/webpack.dev.conf.js
将devtool: '#cheap-module-eval-source-map',改为devtool: '#eval-source-map ',
devtool介绍:
https://webpack.js.org/configuration/devtool/#development
webpack——devtool配置及sourceMap的选择
webpack——devtool里的7种SourceMap模式
重启vue,
参考:
https://blog.csdn.net/xyx107/article/details/104396772
https://blog.csdn.net/qq_23064501/article/details/112621440
以上是关于Vue使用debugger的主要内容,如果未能解决你的问题,请参考以下文章
jhipster with vue配置vscode debugger for microsoft edge
webstorm中使用debugger模式调试 react vue 前端代码,可以在webstorm源码处打断点