学习记录——Vue 代码如何进行断点调试
学习视频:Vue 代码如何进行断点调试?【Vue 小技巧】_哔哩哔哩_bilibilivue官方文档:在 VS Code 中调试 | Vue.js1、添加配置:cli2在config/index.js中: devtool: 'source-map',cli3在vue.config.js中:module.exports = {configureWebpack: {devtool: 'source-m
学习视频:Vue 代码如何进行断点调试?【Vue 小技巧】_哔哩哔哩_bilibili
vue官方文档:在 VS Code 中调试 | Vue.js
1、添加配置:
cli2在config/index.js中: devtool: 'source-map',
cli3在vue.config.js中:
module.exports = {
configureWebpack: {
devtool: 'source-map',
},
}
2、在 Activity Bar 里的 Debugger 图标来到 Debug 视图:
点击在 Activity Bar 里的 Debugger 图标来到 Debug 视图,然后点击那个齿轮图标来配置一个 launch.json 的文件,选择 Chrome/Firefox: Launch 环境。然后将生成的 launch.json 的内容替换成为相应的配置:
eg:"configurations": [
{
"type": "pwa-chrome",
"request": "launch",
"name": "vuejs: chrome",
"url": "http://localhost:8082/#/login",
"webRoot": "${workspaceFolder}/src",
"breakOnLoad": true,
"sourceMapPathOverrides": {
"webpack:///src/*": "${webRoot}/*"
}
}
]
3、设置断点,开始调试
更多推荐
所有评论(0)