@arco-design/web-vue
Version:
Arco Design Vue 2.0: A Vue.js 3 UI Library
28 lines (27 loc) • 651 B
JavaScript
import { isObject, isNumber } from "../_utils/is.js";
const getValueData = (value, fieldNames) => {
const result = [];
for (const item of value) {
if (isObject(item)) {
result.push({
raw: item,
value: item[fieldNames.value],
label: item[fieldNames.label],
closable: item[fieldNames.closable],
tagProps: item[fieldNames.tagProps]
});
} else if (value || isNumber(value)) {
const raw = {
value: item,
label: String(item),
closable: true
};
result.push({
raw,
...raw
});
}
}
return result;
};
export { getValueData };