Vue method scroll div to top

后端 未结 5 1011
离开以前
离开以前 2021-01-18 06:20

I am learning vue. I have the following method where I add a chat message to a div with id=\"toolbar-chat\". This div allows scrolling on y axis an

5条回答
  •  暖寄归人
    2021-01-18 07:04

    I used this to make it work:

    document.body.scrollTop = 0; // For Safari
    document.documentElement.scrollTop = 0; // For Chrome, Firefox, IE and Opera
    

提交回复
热议问题