Browse Source

docs: player load

DIYgod 6 years ago
parent
commit
3e73d71266
1 changed files with 1 additions and 7 deletions
  1. 1 7
      docs/.vuepress/components/DPlayer.vue

+ 1 - 7
docs/.vuepress/components/DPlayer.vue

@@ -79,13 +79,7 @@ export default {
     },
     mounted: function () {
         if (this.immediate) {
-            if (!window) {
-                this.dplayer = new DPlayer(this.options);
-            } else {
-                window.onload = () => {
-                    this.dplayer = new DPlayer(this.options);
-                }
-            }
+            this.dplayer = new DPlayer(this.options);
         }
     },
     beforeDestroy: function () {