Files

9 lines
214 B
Plaintext
Raw Permalink Normal View History

2025-08-18 09:11:51 +08:00
function getPickerViewLabel(item) {
if (typeof item === 'object' && typeof item.label === 'string') {
return item.label || '';
}
return item;
}
export default {
getPickerViewLabel: getPickerViewLabel
};