mirror of
https://github.com/sysadminsmedia/homebox.git
synced 2025-12-21 13:23:14 +01:00
8 lines
197 B
TypeScript
8 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");
|
|
});
|
|
});
|