Vue method scroll div to top

后端 未结 5 1010
离开以前
离开以前 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:01

    Here is my solution :

    One global div in main container

    One global function put in the Vue prototype :

    Vue.prototype.$scrollTop = function () {
      var element = document.getElementById("topDiv");
      var top = element.offsetTop;
      window.scrollTo(0, top);
    }
    

    The same anchor everywhere :

    Go to the top
    

提交回复
热议问题