primevue-mirror/plugins/scrollToTop.js

9 lines
282 B
JavaScript
Raw Normal View History

2022-09-12 10:35:24 +00:00
export default defineNuxtPlugin((nuxtApp) => {
nuxtApp.$router.options.scrollBehavior = (to, from, savedPosition) => {
return new Promise((resolve, reject) => {
setTimeout(() => {
resolve({ left: 0, top: 0, behaviour: "smooth" });
}, 100);
});
};
});