fix: anchor 이동에서 #을 남기지 않도록

This commit is contained in:
2021-12-07 02:27:42 +09:00
parent 5587a358ce
commit 8cbe92ca46
3 changed files with 25 additions and 14 deletions
+9
View File
@@ -0,0 +1,9 @@
export function scrollHardTo(elementId: string): void {
const element = document.getElementById(elementId);
if(!element){
return;
}
element.scrollIntoView({
behavior: 'auto',
});
}