前端BUG:Resizeobserver loop completed with undelivered notifications.
前端项目(vue-cli/vue3/Acro Design)页面使用鼠标滚轮放大时,会发生izeobserver loop completed with undelivered notifications.错误
当我在页面使用滚轮放大的时候,遇到ResizeObserver loop completed with undelivered notifications.
错误。不知道啥原因。
解决方案
创建一个全局css文件
iframe#webpack-dev-server-client-overlay {
display: none !important
}
在
main.ts
中导入
import "./assets/index.css";
解决问题!
评论区