BosNaufal / vue2-scrollbar

The Simplest Pretty Scroll Area Component with custom scrollbar for Vue 2. https://bosnaufal.github.io/vue2-scrollbar
MIT License
234 stars 80 forks source link

how to let the scrollToY to the bottom #19

Closed HZZformGD closed 7 years ago

HZZformGD commented 7 years ago

is there some api such as scrollToY(‘bottom’) or scrollToBottom , i have a chatting list , its item is coming from websocket in mounted hook , and i want to scroll it to bottom when i send or receive new message

gmatkowski commented 6 years ago

const elementSize = this.$refs.Scrollbar.getSize() const lowerEnd = elementSize.scrollAreaHeight - elementSize.scrollWrapperHeight; this.$refs.Scrollbar.scrollToY(lowerEnd);