mounted: function(){
this.preventBack();
},
methods: {
preventBack: function() {
const thisObject = this;
history.pushState(null, null, location.href);
window.onbeforeunload = null;
window.onpopstate = function () {
history.go(1);
};
},
}
'기록' 카테고리의 다른 글
자바스크립트 엔진 (0) | 2020.11.22 |
---|---|
dir=rtl 이 특수문자에는 먹히지 않을 때 (0) | 2020.11.12 |
[Vue] global mixins (0) | 2020.11.12 |
git 초기화 (0) | 2020.11.03 |
JS 아스키코드 변환하기 (0) | 2020.10.31 |