UNPKG

@twotwoba/vv-cli

Version:

Easily create Vite + React/Vue3 project with TailwindCSS and other useful libraries. Also support Chrome extension.

17 lines (13 loc) 335 B
import type { Router } from 'vue-router' import { LoadingBar } from '@varlet/ui' export const createPageLoadingGuard = (router: Router) => { router.beforeEach(() => { LoadingBar.start() }) router.afterEach(() => { LoadingBar.finish() }) router.onError(() => { LoadingBar.error() }) }