브라우저 닫기 시에만 함수를 호출하는 방법 같은 시스템의 탭이 몇 개 열려 있고 그 중 하나가 닫혀 있는 경우 브라우저를 닫았을 때만 사용자 프런트 엔드 세션을 클리어하고 싶은 상황이 있습니다.아무것도 하고 싶지 않습니다.브라우저 닫힘 또는 모든 탭 닫힘으로 아무것도 하고 싶지 않은 페이지 새로고침이 있는 경우 코드를 보여 줍니다. App.vue async created() { window.addEventListener("beforeunload", this.handler); } methods:{ handler(){// eslint-disable-line no-unused-vars console.log("here"); sessionMixin.methods.clearSession(); return null;..