I have a list created by v-for and wrapped by md-scrollbar.
<md-content class="md-scrollbar"> <div v-for="(msg, index) of list" :key="index"> {{msg}} </div> </md-content> After list changed, I wish the scrollbar scroll to the bottom. So need to listen to element updated event or the scrollbar scrollHeight changed event. How to listen to certain DOM element's property is changed?
BTW I can't move the scroll after list changed logic because the new element hasn't been rendered at that moment yet, the height of md-scrollbar didn't update.