[Vuejs]-Hide element in VueJs while scrolling

0๐Ÿ‘

โœ…

I resolved this issue.

            handleScroll() {
                if(this.timer !== null) {
                    clearTimeout(this.timer);
                    $("#sumTable").hide();
                }
                this.timer = setTimeout(function() {
                    $("#sumTable").show();
                }, 150);
            },

timer variable is applied.

Leave a comment