Home  >  Article  >  Web Front-end  >  What should I do if Vue cannot break the point?

What should I do if Vue cannot break the point?

藏色散人
藏色散人Original
2022-12-22 09:48:573824browse

Solution to the problem that vue cannot break the point: 1. Press f12 on the keyboard to enter the browser debugging page; 2. Click "sources"; 3. Find the JS to be debugged; 4. In the source code Add the "GetPrice(nIndex){debugger;...}" code; 5. Reload the page.

What should I do if Vue cannot break the point?

The operating environment of this tutorial: Windows 10 system, Vue version 3, Dell G3 computer.

What should I do if vue cannot interrupt?

Google Chrome VUE cannot add breakpoints for debugging solutions

Google Chrome can debug JS functions with breakpoints

The method is as follows:

F12, enter the browser debugging page

Click on sources

Find the JS to be debugged

Under normal circumstances, click on the number line to set a breakpoint

What should I do if Vue cannot break the point?

But my life and death clicks are not responding. At this time, you can try to format the code

What should I do if Vue cannot break the point?

If it still doesn’t work Add a breakpoint, just like me, still can't add a breakpoint

The only way is to add a breakpoint in the source code

debugger

Manually break the point from the source code

       GetPrice(nIndex){
            debugger;
           if(nIndex>=0&&nIndex<this.courselistdata.length><p>At this time , a breakpoint will appear when the page is reloaded </p>
<p><img src="https://img.php.cn/upload/image/803/395/617/1671673481697645.jpg" title="1671673481697645.jpg" alt="What should I do if Vue cannot break the point?"></p>## And, the amazing thing is, you can also add a breakpoint by clicking at this time <p></p> Recommended learning: " <p>vue.js video tutorial<a href="https://www.php.cn/course/list/18.html" target="_blank">》</a></p></this.courselistdata.length>

The above is the detailed content of What should I do if Vue cannot break the point?. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn