From 38cdff1163573261e36f9d7f8920e1578e1172c8 Mon Sep 17 00:00:00 2001
From: 闫增涛 <1829501689@qq.com>
Date: 星期五, 22 十一月 2024 10:55:33 +0800
Subject: [PATCH] 数学书收藏功能优化

---
 src/App.vue |   20 ++++++++++++++++++++
 1 files changed, 20 insertions(+), 0 deletions(-)

diff --git a/src/App.vue b/src/App.vue
index e738755..3ee105a 100644
--- a/src/App.vue
+++ b/src/App.vue
@@ -21,6 +21,26 @@
   </div>
 </template>
 <script>
+  // 瑙e喅ERROR ResizeObserver loop completed with undelivered notifications.//闂鐨�
+const debounce = (fn, delay) => {
+  let timer = null;
+  return function () {
+    let context = this;
+    let args = arguments;
+    clearTimeout(timer);
+    timer = setTimeout(function () {
+      fn.apply(context, args);
+    }, delay);
+  };
+};
+// 瑙e喅ERROR ResizeObserver loop completed with undelivered notifications.
+const _ResizeObserver = window.ResizeObserver;
+window.ResizeObserver = class ResizeObserver extends _ResizeObserver {
+  constructor(callback) {
+    callback = debounce(callback, 16);
+    super(callback);
+  }
+};
 export default {
   name: "App",
   components: {

--
Gitblit v1.9.1