mirror of
https://github.com/hay-kot/homebox.git
synced 2025-07-24 03:20:29 +00:00
7 lines
197 B
TypeScript
7 lines
197 B
TypeScript
export default defineNuxtPlugin(nuxtApp => {
|
|
nuxtApp.hook("page:finish", () => {
|
|
console.log(document.body);
|
|
document.body.scrollTo({ top: 0 });
|
|
console.log("page:finish");
|
|
});
|
|
});
|