React 뒤로가기 할때

김종원·2023년 2월 20일
0

[TIL (Today I Learned)]

목록 보기
37/45

tab으로 이동할때 뒤로가기 감지하는 법!


useEffect(() => {
	window.addEventListener('popstate', () => {
    	// 원하는 함수를 적어주면 됨
		history.pushState(null, '', location.href)
		router.push('/business')
	})
}, []) 

혹은 router.replace(/business/account?tab=${tab})
replace를 이용해서 변경해주면 좋다.

profile
발전하기위한 기록

0개의 댓글