Vue Cli3 + VS Code 愉快调试

1. 设置vue.config.js以便能够准确命中断点

module.exports = {
  configureWebpack: {
    devtool: 'source-map'
  }
}

2. 打开调试配置文件launch.json, 添加或修改以下配置:

{
  // Use IntelliSense to learn about possible attributes.
  // Hover to view descriptions of existing attributes.
  // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
  "version": "0.2.0",
  "configurations": [
    {
      "type": "chrome",
      "request": "launch",
      "name": "vuejs: chrome",
      "url": "http://localhost:8080",
      "webRoot": "${workspaceFolder}/src",
      "breakOnLoad": true,
      "sourceMapPathOverrides": {
        "webpack:///./src/*": "${webRoot}/*"
      }
    }
  ]
}

3. 在终端运行程序,yarn serve, npm run serve,或者在vue-ui中启动均可

4. 点击debug绿色小三角,或者F5启动调试

©著作权归作者所有,转载或内容合作请联系作者
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。

推荐阅读更多精彩内容