I am new to Vue.js, and I am loving it. Previously I used JQuery and having to do everything manually was very inefficient. I liked, however, having the code I wrote in the Chrome debugger so that I could add breakpoints and see what was happening anywhere in my application.
Now I moved to Vue.js, and I am using vue-cli and npm to create, and build a Vue application that generates the actual app code under dist/build.js. I have a method within one Vue component which is not showing any error, but is not behaving as expected.
Is it possible to add a breakpoint within that method so that I see what it is receiving and how it is handling it, running it step-by-step?
From what I have seen, the source code I wrote in the Vue component is within build.js, inside a loooong string within an eval function.
debuggerat the beginning of your method?