@epie/bi-crud 2.0.28 → 2.0.29
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.
- package/lib/bi-crud.esm.js +8 -2
- package/lib/bi-crud.umd.js +8 -2
- package/package.json +1 -1
package/lib/bi-crud.esm.js
CHANGED
|
@@ -12582,9 +12582,15 @@ function useRender$2({
|
|
|
12582
12582
|
} // 默认
|
|
12583
12583
|
else {
|
|
12584
12584
|
function deep(item) {
|
|
12585
|
-
|
|
12585
|
+
let props;
|
|
12586
|
+
|
|
12587
|
+
try {
|
|
12588
|
+
props = { ...item
|
|
12589
|
+
};
|
|
12590
|
+
delete props.children;
|
|
12591
|
+
} catch (ex) {} // Cannot set property children of #<Element>
|
|
12592
|
+
|
|
12586
12593
|
|
|
12587
|
-
delete props.children;
|
|
12588
12594
|
return h(ElTableColumn, props, {
|
|
12589
12595
|
header: scope => {
|
|
12590
12596
|
const slot = slots[`header-${item.prop}`];
|
package/lib/bi-crud.umd.js
CHANGED
|
@@ -12585,9 +12585,15 @@
|
|
|
12585
12585
|
} // 默认
|
|
12586
12586
|
else {
|
|
12587
12587
|
function deep(item) {
|
|
12588
|
-
|
|
12588
|
+
let props;
|
|
12589
|
+
|
|
12590
|
+
try {
|
|
12591
|
+
props = { ...item
|
|
12592
|
+
};
|
|
12593
|
+
delete props.children;
|
|
12594
|
+
} catch (ex) {} // Cannot set property children of #<Element>
|
|
12595
|
+
|
|
12589
12596
|
|
|
12590
|
-
delete props.children;
|
|
12591
12597
|
return vue.h(ElTableColumn, props, {
|
|
12592
12598
|
header: scope => {
|
|
12593
12599
|
const slot = slots[`header-${item.prop}`];
|