1
0
DIYgod 2 жил өмнө
parent
commit
a0424ca303

+ 6 - 2
docs/.vuepress/components/DPlayer.vue

@@ -71,12 +71,16 @@ export default {
     methods: {
         load: function () {
             this.options.container = this.$refs.dplayer;
-            this.dplayer = new window.DPlayer(this.options);
+            setTimeout(() => {
+                this.dplayer = new window.DPlayer(this.options);
+            }, 0);
         }
     },
     mounted: function () {
         if (this.immediate) {
-            this.dplayer = new window.DPlayer(this.options);
+            setTimeout(() => {
+                this.dplayer = new window.DPlayer(this.options);
+            }, 0);
         }
     },
     beforeDestroy: function () {