Load.sector
개요
예시
// 컬렉션키 improvementsstatus의 값으로 if문에 활용하는 예시
let status = Load.sector.improvementsstatus;
if (status == '대기') {
...
}
else if (status == '진행중') {
...
}
else if (status == '완료') {
...
}
else{
...
}
Last updated
Was this helpful?