提交 7c5cab0f 编写于 作者: 辛宝Otto's avatar 辛宝Otto 🥊

refactor(uni-components): 使用兼容 es5 写法,功能无变化

上级 de2b4e4a
......@@ -234,11 +234,21 @@ function useBase(
if (__X__) {
// case: 如果 modelValue 和 value 都存在,优先使用 modelValue
// case: 如果 modelValue 未设置,读取 value
const modelValueString = getValueString(
props.modelValue,
props.type,
maxlength.value
)
const valueString = getValueString(props.value, props.type, maxlength.value)
// prettier-ignore
value =
props.modelValue !== void 0
? getValueString(props.modelValue, props.type, maxlength.value) ??
getValueString(props.value, props.type, maxlength.value)
: getValueString(props.value, props.type, maxlength.value)
? modelValueString !== null && modelValueString !== void 0
? modelValueString
: valueString
: valueString
} else {
value =
getValueString(props.modelValue, props.type) ||
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册