From e3ab850cc1dc989208f881fc66d3b10867940a63 Mon Sep 17 00:00:00 2001 From: Ayaka Rizumu <464388324@qq.com> Date: Thu, 1 Dec 2022 20:33:07 +0800 Subject: [PATCH] fix: scrollToTop does not work as expected (#271) --- plugins/scroll-to-top.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/scroll-to-top.ts b/plugins/scroll-to-top.ts index 943acc7d..448d2420 100644 --- a/plugins/scroll-to-top.ts +++ b/plugins/scroll-to-top.ts @@ -2,7 +2,7 @@ export default defineNuxtPlugin(() => { return { provide: { scrollToTop: () => { - document.body.scrollTo(0, 0) + window.scrollTo({ top: 0, left: 0, behavior: 'smooth' }) }, }, }