js + vue select下拉 数组进行过滤,拼装成自己所用数据。

 this.tenantsOptions = dataObj.map((item, index, arr) => {

            let c = { label: item.name, value: item.id + "" }

            return c;

          })

你可能感兴趣的:(vue.js,javascript)