chore(deps): upgrade nuxt

This commit is contained in:
Kevin 2023-03-21 12:20:36 +08:00
parent 0dbea5915f
commit 5717e5e677
No known key found for this signature in database
GPG key ID: 68D73816CD641CDB
6 changed files with 1034 additions and 999 deletions

View file

@ -18,7 +18,7 @@ export default defineNuxtPlugin(({ $scrollToTop }) => {
const navigateTo = (to: string | RouteLocationRaw) => {
closeKeyboardShortcuts()
$scrollToTop() // is this really required?
;($scrollToTop as () => void)() // is this really required?
router.push(to)
}