gpt4 book ai didi

vue.js - 使用 Vue CLI V4 调试 Vue 3

转载 作者:行者123 更新时间:2023-12-03 20:42:20 27 4
gpt4 key购买 nike

我正在使用 Vue 3,我想使用 VS Code(Chrome 扩展调试器)调试标准的 Vue 演示。
我的 vue.config.js 看起来像这样:

module.exports = {
configureWebpack: {
devtool: 'source-map'
}
}
这是我的 launch.json 设置:
{
"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}/*"
}
},
]
}
启动调试器时,我只能调试编译后的app.js,不能调试HelloWorld.vue。对我来说,源 map 似乎没有被构建。有人可以帮我解决这个问题吗?
Component to debug (components/Hello World.vue)
Debugged compiled app.js
如果有必要:
  • 节点版本:15.11.0
  • Vue-CLI 版本:4.5.11
  • 最佳答案

    我有同样的问题。我不确定在哪里报告它,但我发现的一个解决方法是添加“调试器”似乎可以工作,直到有一个修复。 (我的 launch.json 和 vue 配置和你的一样。)
    enter image description here

    关于vue.js - 使用 Vue CLI V4 调试 Vue 3,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/66635882/

    27 4 0
    Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com