1

ResizeObserver loop limit exceeded
https://github.com/ElemeFE/element/issues/11420#issuecomment-898992179
el-scrollbar

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
main.js
mounted() {
if (this.native) return;
this.$nextTick(this.update);
!this.noresize && addResizeListener(this.$refs.resize, this.update);
},

export const addResizeListener = function(element, fn) {
if (isServer) return;
if (!element.__resizeListeners__) {
element.__resizeListeners__ = [];
element.__ro__ = new ResizeObserver(resizeHandler);
element.__ro__.observe(element);
}
element.__resizeListeners__.push(fn);
};

2

chrome - 102
EvalError: Possible side-effect in debug-evaluate

https://stackoverflow.com/questions/72396527/evalerror-possible-side-effect-in-debug-evaluate-in-google-chrome

console => 设置 => eager evaluation

https://chromium-review.googlesource.com/c/v8/v8/+/3557234/
https://chromium-review.googlesource.com/c/v8/v8/+/3660253

  • SyntaxError ?()
    Unhandled
    Unexpected end of input
    在EvalError: Possible side-effect in debug-evaluate 之后

sourcemap 上传问题