@leaverou If I want to slap the debugger onto how Vue decides to render a template, how do I do that? Looks like I can attach to a callback, but I don't see an easy way to monitor the rendering of `<div :class="{ active: isActive }"></div>`.
React makes rendering of components very explicit, which makes it easy to slap a debugger on it when it starts to go off the rails. I haven't used Vue but I have used Angular, and my biggest grouse with it was all the implicit behavior that you couldn't really see without building Angular from source and understanding its implementation. I find, generally, React makes that way simpler because it externalizes generation of component structure into the rendering functions.
@mtomczak You can use the Vue devtools, or a computed property. If it's on the app instance, I sometimes just expose it on globalThis temporarily just so I could play with it in the console