primevue-mirror/plugins/scrollToTop.js

10 lines
315 B
JavaScript
Raw Normal View History

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