Invalid attempt to iterate non-iterable instance. In order to be iterable

Invalid attempt to iterate non-iterable instance. In order to be iterable_第1张图片

enterpriseName(text) {
      const values = this.enterpriseList.filter((item) => item.id == text)
      if (values.length > 0) {
        return values[0].name
      }
    },

 

你可能感兴趣的:(vue,ant)