How do element-ui el-tree click node events get the event source?

because firefox does not support window.event "s usual solution var evt = window.event | | arguments.callee.caller.arguments [0] Uncaught TypeError: "caller"," callee", and "arguments" properties may not be accessed on strict mode functions or the arguments objects for calls to them

in strict mode
<el-tree :data="data" :props="defaultProps" @node-click="handleNodeClick"  node-key="id"></el-tree>
   handleNodeClick(node,data,value) {
            console.log(node)
            console.log(data)
            var myTarget = value.$el
            //console.log(value.$el)
            console.log(arguments.callee)
            let event = window.event || arguments.callee.caller.arguments[0];
            let target = event.srcElement||event.target;
        },

is there any other way to get the event source of the current event in the firefox browser

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-1b2b6ef-2ba9e.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-1b2b6ef-2ba9e.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
Need Help?