diff --git a/lib/app/components/nuxt-loading.vue b/lib/app/components/nuxt-loading.vue index 7287910d5f..4e261ab141 100644 --- a/lib/app/components/nuxt-loading.vue +++ b/lib/app/components/nuxt-loading.vue @@ -17,7 +17,7 @@ export default { percent: 0, show: false, canSuccess: true, - throttle: 200, + throttle: <%= loading.throttle %>, duration: <%= loading.duration %>, height: '<%= loading.height %>', color: '<%= loading.color %>', diff --git a/lib/common/nuxt.config.js b/lib/common/nuxt.config.js index 6e296710f2..97004e3ec4 100644 --- a/lib/common/nuxt.config.js +++ b/lib/common/nuxt.config.js @@ -175,6 +175,7 @@ export default { color: 'black', failedColor: 'red', height: '2px', + throttle: 200, duration: 5000, rtl: false },