[Vuejs]-Vue js + Typescript Scroll to bottom of div when data changes

-2👍

Change your code to

gotoBottom() {
    let content = this.$refs.commentsWrapper as Vue;
    content.$el.scrollTop = content.scrollHeight;
}

Since this.$refs.content is a Vue component (in your case), you need to access this.$refs.content.$el to access the DOM element.

Leave a comment