diff --git a/src/composables/scroller/useScroller.ts b/src/composables/scrollView/useScrollView.ts similarity index 95% rename from src/composables/scroller/useScroller.ts rename to src/composables/scrollView/useScrollView.ts index 510c88f..a94de23 100644 --- a/src/composables/scroller/useScroller.ts +++ b/src/composables/scrollView/useScrollView.ts @@ -1,5 +1,5 @@ import {ref, computed, onMounted} from "vue"; -export default function useScroller({ targetId }: {targetId: string}) { +export default function useScrollView({ targetId }: {targetId: string}) { const scroll = ref(0); let scrollTarget: HTMLElement | SVGElement | null;