mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-27 08:02:01 +00:00
fix: use triple equals in loading.throttle [release]
This commit is contained in:
parent
2d7480457d
commit
e77c2db93e
@ -9,8 +9,8 @@ export default {
|
||||
reversed: false,
|
||||
skipTimerCount: 0,
|
||||
rtl: <%= Boolean(loading.rtl) %>,
|
||||
throttle: <%= typeof loading.throttle == 'number' ? loading.throttle : 200 %>,
|
||||
duration: <%= typeof loading.throttle == 'number' ? loading.duration : 3000 %>,
|
||||
throttle: <%= typeof loading.throttle === 'number' ? loading.throttle : 200 %>,
|
||||
duration: <%= typeof loading.throttle === 'number' ? loading.duration : 3000 %>,
|
||||
continuous: <%= Boolean(loading.continuous) %>
|
||||
}
|
||||
},
|
||||
|
Loading…
Reference in New Issue
Block a user