Files
ClassContent/历届学生/韩想/min/miniprogram_npm/@vant/weapp/picker-column/index.wxs
2024-09-27 02:06:13 +08:00

9 lines
242 B
XML

function isObj(x) {
var type = typeof x;
return x !== null && (type === 'object' || type === 'function');
}
module.exports = function (option, valueKey) {
return isObj(option) && option[valueKey] != null ? option[valueKey] : option;
}