mounted() {
this.preventNavigation(); // 네비게이션 방지 추가
},
methods: {
preventNavigation() {
history.pushState(null, null, location.href);
window.onpopstate = () => {
history.go(1);
};
},
},'Vue' 카테고리의 다른 글
| promise 사용 (0) | 2024.10.18 |
|---|---|
| 텍스트 내 삼항연산자 (0) | 2024.10.17 |
| 화면 전환 및 뒤로 가기 관리 (3) | 2024.10.15 |
| api 통신_콜백함수 & async/await (1) | 2024.09.09 |
| Vue_12 컴포넌트간 데이터 전달(부모to자식, 자식to부모) (0) | 2024.09.06 |