瀏覽代碼

fix: IE dom.remove() not a function

Sendya 6 年之前
父節點
當前提交
8f39724cd9
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      src/utils/util.js

+ 1 - 1
src/utils/util.js

@@ -30,6 +30,6 @@ export function removeLoadingAnimate(id = '', timeout = 1500) {
     return
   }
   setTimeout(() => {
-    document.getElementById(id).remove()
+    document.body.removeChild(document.getElementById(id))
   }, timeout)
 }