Reputation: 136
In my application I'm using vuejs with some extensions like: vuex, vue-router and more. The problem I'm having is that on every reload my application moves a bit to the left because of a scrollbar and then gets back to it's original position.
Any help?
Upvotes: 0
Views: 44
Reputation: 127
If you dont want anyone to sroll on the page, you can just add
.className {
overflow: hidden;
}
Upvotes: 1