refactored scroller into scrollView
This commit is contained in:
parent
875b0828d0
commit
2cde4e8896
1 changed files with 1 additions and 1 deletions
|
|
@ -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;
|
||||
Loading…
Reference in a new issue