You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
506 B
20 lines
506 B
import NProgress from 'nprogress'
|
|
import 'nprogress/nprogress.css'
|
|
|
|
NProgress.configure({
|
|
easing: 'ease', // 动画方式
|
|
speed: 1000, // 递增进度条的速度
|
|
showSpinner: false, // 是否显示加载ico
|
|
trickleSpeed: 200, // 自动递增间隔
|
|
minimum: 0.3, // 更改启动时使用的最小百分比
|
|
parent: 'body', //指定进度条的父容器
|
|
})
|
|
// 打开进度条
|
|
export const start = () => {
|
|
NProgress.start()
|
|
}
|
|
|
|
// 关闭进度条
|
|
export const close = () => {
|
|
NProgress.done()
|
|
}
|