mrxy-yk 1.9.4 → 1.9.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -16,7 +16,7 @@ var TableColumn_vue_vue_type_script_setup_true_lang_default = /*@__PURE__*/ defi
|
|
|
16
16
|
let result = cellValue;
|
|
17
17
|
if (props.formatter) if (typeof props.formatter === "function") result = props.formatter(row, column, cellValue, index);
|
|
18
18
|
else return props.formatter;
|
|
19
|
-
return result || ObjectUtil.isEmptyToVal(result, emptyStr);
|
|
19
|
+
return String(result || ObjectUtil.isEmptyToVal(result, emptyStr));
|
|
20
20
|
}
|
|
21
21
|
return (_ctx, _cache) => {
|
|
22
22
|
const _component_el_table_column = ElTableColumn;
|