When vue project f12 views the source code, js automatically breakpoint debugging

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

on the js code.

what"s going on?

Jan.20,2022

chrome- > F12-> source- > (this time should automatically) select a js file, and then in Event Listener Breadpoints to see if something is checked, if so, remove it!

Menu