9 lines
186 B
Plaintext
9 lines
186 B
Plaintext
![]() |
function getPickerViewLabel(item) {
|
||
|
if (typeof item === 'object' && typeof item.label === 'string') return item.label || ''
|
||
|
return item
|
||
|
}
|
||
|
|
||
|
export default {
|
||
|
getPickerViewLabel,
|
||
|
}
|