엔드포인트에서 오는 텍스트 색상을 변경하고 싶습니다. UI에는 삼항 연산자('BackgroundColor:green)의 값만 표시됩니다. 누구든지 나를 도와줄 수 있나요?
mainTrack() { this.axios .get( `${configObject.apiBaseUrl}/Maintenance/Company`, configObject.authConfig() ) .then((res) => { this.maintainTrack= res.data; this.maintainTrack.forEach(element => { element.isResolve = element.isResolve== 'true' ? 'backgroundColor:green' : 'backgroundColor:red' }); }) .catch((error) => {}); },