nprogress route switch to add progress bar

Insert picture description here
Document address

installation

npm install nprogress -S

Import in the vue routing page

import NProgress from 'nprogress'
import 'nprogress/nprogress.css'

use

router.beforeEach((to, from, next) => {
    
    
  NProgress.start();
  next()
})

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

Guess you like

Origin blog.csdn.net/AK852369/article/details/109031139