From 59763be7d357d4296adca18ade61cdfd29f7f49e Mon Sep 17 00:00:00 2001 From: Anthony Fu Date: Tue, 22 Nov 2022 19:41:13 +0800 Subject: [PATCH] chore: lint --- src/modules/nprogress.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/modules/nprogress.ts b/src/modules/nprogress.ts index 0c65954..7354682 100644 --- a/src/modules/nprogress.ts +++ b/src/modules/nprogress.ts @@ -7,6 +7,8 @@ export const install: UserModule = ({ isClient, router }) => { if (to.path !== from.path) NProgress.start() }) - router.afterEach(() => { NProgress.done() }) + router.afterEach(() => { + NProgress.done() + }) } }