@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.
@@ -12582,9 +12582,15 @@ function useRender$2({
12582
12582
  } // 默认
12583
12583
  else {
12584
12584
  function deep(item) {
12585
- const props = cloneDeep_1(item); // Cannot set property children of #<Element>
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}`];
@@ -12585,9 +12585,15 @@
12585
12585
  } // 默认
12586
12586
  else {
12587
12587
  function deep(item) {
12588
- const props = cloneDeep_1(item); // Cannot set property children of #<Element>
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}`];
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@epie/bi-crud",
3
3
  "simpleName": "bi-crud",
4
- "version": "2.0.28",
4
+ "version": "2.0.29",
5
5
  "private": false,
6
6
  "main": "lib/bi-crud.umd.js",
7
7
  "module": "lib/bi-crud.esm.js",