Vue
브라우저 뒤로가기 버튼 막기
99duuk
2024. 10. 16. 15:38
mounted() {
this.preventNavigation(); // 네비게이션 방지 추가
},
methods: {
preventNavigation() {
history.pushState(null, null, location.href);
window.onpopstate = () => {
history.go(1);
};
},
},