1
0
Fork 1
mirror of https://github.com/elk-zone/elk.git synced 2024-07-08 23:36:49 +01:00
elk/plugins/1.scroll-to-top.ts

10 lines
181 B
TypeScript
Raw Normal View History

2022-11-29 20:15:53 +00:00
export default defineNuxtPlugin(() => {
return {
provide: {
scrollToTop: () => {
window.scrollTo({ top: 0, left: 0, behavior: 'smooth' })
2022-11-29 20:15:53 +00:00
},
},
}
})