美文网首页
控制台报错解决方法[Violation ] Added non-

控制台报错解决方法[Violation ] Added non-

作者: xueyueshuai | 来源:发表于2024-06-01 11:21 被阅读0次
    [Violation ] Added non-passive event listener to ascroll- blocking 'mousewheel’event Consider marking event handler as ’ passive’to make the page more responsive. --控制台报错解决方法
    
    这个错误翻译过来的的意思就是:[违规]在ascroll中添加了非被动事件侦听器-阻塞“mousewheel”事件考虑将事件处理程序标记为“passive”以使页面更具响应性。
    
    解决方法:
    
    npm install --save default-passive-events
    
    在main.js中引用:
    
    import 'default-passive-events'
    

    相关文章

      网友评论

          本文标题:控制台报错解决方法[Violation ] Added non-

          本文链接:https://www.haomeiwen.com/subject/eefjqjtx.html