在控制台也无法打断点
在 package.json 文件中添加
"rules": {
"no-console": "off",
"no-debugger": "off"
},
就可以了
console.log 报错 改成 window.console.log 就可以了
翻译一下就可以解决了