프론트엔드/Nuxt

ssr 모드에서 client일 때만 처리하게 하는법 (ex. window is not defined, document is not defined)

짱구를왜말려? 2023. 5. 30. 02:09
반응형
SMALL
// 이러면 컴파일 단계에서 에러 없음
if(process.client){
	window.... 
}
LIST