欢迎加QQ交流:
2
0
2
3

进度条 vue3 vite

NProgress.js 官网  https://ricostacruz.com/nprogress/

安装:

npm install nprogress

使用:

// 引入NProgress进度条
import NProgress from 'nprogress'
import 'nprogress/nprogress.css'

router.beforeEach((to,from,next)=>{
    // 进度条
    NProgress.start()
    next()
})

router.afterEach(()=>{
    NProgress.done()
  })

https://blog.csdn.net/qq_44793507/article/details/127074746

posted @ 2022-11-28 16:16  常安·  阅读(135)  评论(0)    收藏  举报