the front-end projects written by vue sometimes need f12 to judge some css or js problems, but always automatically put a breakpoint on the js code, and must click the "continue" button to go down, which is very annoying
the file in question is the adapters/xhr.js
file of the axios
library. The breakpoint is on request.send (requestData)
. After f12, he did not break the js
line, nor did he use debugger
js
code.
what"s going on?