VSCode如何设置Vue前端的debug调试

前端之家收集整理的这篇文章主要介绍了VSCode如何设置Vue前端的debug调试前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

 

 

vscode在调试vue.代码时,如何进行debug?

1.安装Chrome Debug插件

clipboard

2.在launch.json中,将url修改成你前端项目的路径:

clipboard

  1 {
  2   // Use IntelliSense to learn about possible attributes.
  3   // Hover to view descriptions of existing attributes.
  4   // For more information,visit: https://go.microsoft.com/fwlink/?linkid=830387
  5   "version": "0.2.0",  6   "configurations": [
  7     {
  8       "type": "chrome",1)">  9       "request": "launch",1)"> 10       "name": "Chrome 调试",1)"> 11       "url": "http://localhost:8090/#/login",1)"> 12       "webRoot": "${workspaceFolder}/src",1)"> 13       "breakOnLoad": false,1)"> 14       "sourceMapPathOverrides": {
 15         "webpack:///src/*": "${webRoot}/*"
 16       }
 17     }
 18   ]
 19 }

3.vue-cli2版本的,修改config/index.js中配置:

clipboard

完成以上配置,重启项目,打上断点即可。

clipboard

clipboard

猜你在找的Web前端相关文章