forked from mirrors/homebox
891d41b75f
* card option 1 * UI updates for item card * fix test error * fix pagination issues on backend * add integer support * remove date from cards * implement pagination for search page * resolve search state problems * other fixes * fix broken datetime * attempt to fix scroll behavior
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");
|
|
});
|
|
});
|