반응형 vue sorting(정렬)1 자바스크립트 관련(vuejs에서) 2 - window.print, component import, vue sorting(정렬) window.print 실행했을 때 직전과 직후에 동작하는 event var beforePrint=function(){ console.log("프린트 전 호출"); }; var afterPrint=function(){ console.log("프린트 후 호출"); }; if(window.matchMedia){ var mq=window.matchMedia("print"); mq.addListener(function(mql){ if(mql.matches){ beforePrint(); }else{ afterPrint(); } }); } window.onbeforeprint=beforePrint; window.onafterprint=afterPrint; .vue파일에 .js연결할 때 import는 실행될 때 불.. 2022. 5. 6. 이전 1 다음 반응형