How to get vue instance this? in vue methods

handleScroll: throttle(
        function () {
        let Dom = document.querySelector("-sharpbusinessSummary");
        console.log(Dom.scrollTop);
        console.log(this)
    },500
),
        
        1.thisundefined
        2.
        
       ```
        handleScroll: throttle(
                () => {
                let Dom = document.querySelector("-sharpbusinessSummary");
                console.log(Dom.scrollTop);
                console.log(this)
            },500
        ), 
        ```           
        
         `this`  **** 
        `{a:{data:fn,methods:xxx}}`
        
Mar.05,2022

if you write it yourself, use call or apply to deal with this
example:

handleScroll: throttle(function(){
        let Dom = document.querySelector('-sharpbusinessSummary');
        console.log(Dom.scrollTop);
        console.log(this)
    }.bind(this),500), 
MySQL Query : SELECT * FROM `codeshelper`.`v9_news` WHERE status=99 AND catid='6' ORDER BY rand() LIMIT 5
MySQL Error : Disk full (/tmp/#sql-temptable-64f5-1b37082-2c07a.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
MySQL Errno : 1021
Message : Disk full (/tmp/#sql-temptable-64f5-1b37082-2c07a.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
Need Help?