You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@seyfer Hi, I made this work like this:
scrollToEnd() {
setTimeout(() => {
const container = this.$el.querySelector('.ps-container');
container.scrollTop = container.scrollHeight;
}, 0);
}
So whenever I need to scroll down I call this.scrollToEnd()
So I have a long list of items when I refresh a page I need to do something like that this.$refs.scroll.setToBottom(); How can I achieve that?
The text was updated successfully, but these errors were encountered: