Vue scroll bar set to 0

Can"t scroll bar height be set in

clipboard.png
vue in this way? The set value does not take effect. Please explain

.
Mar.19,2021

in theory, Vue does not affect the execution of JS. Let's make a breakpoint and debug it.


confirm whether your app element has scroll bars or body scroll bars


document.body.scrollTop = 0;
document.documentElement.scrollTop = 0;

Menu