Is the vue listening scroll bar scrolling horizontally or vertically?

determines whether it is scrolling horizontally or vertically, and needs to cache the scrollLeft and scrollTop, of the last scroll, so where should I write the cache?
mounted() {
     // 
    window.addEventListener("scroll", this.handleScroll, true)
}
Jul.14,2021

is written in data or a global variable, and is updated in real time in handleScroll

.
Menu