The value mapping of the json object is displayed in Chinese

for example, the json string returned after the request

{
    color:1,
    ...
}

the corresponding relationship between color numbers and Chinese: (1: blue 2: yellow 3: green)
would like to ask, how to convert to Chinese to bind to the data object? (the front end is written in vue)

Nov.08,2021

 <ul>
      <li v-for="(item,index) in colorList" :key="index" >
          {{colorType[item.color-1]}}
      </li>
 </ul>
 data () {
    return {
      show: false,
      colorType: ['', '', ''],
      colorList: [
        {
          color: 1
        },
        {
          color: 2
        },
        {
          color: 3
        }
      ]
    }
  
Menu