@lx-frontend/wrap-element-ui 1.0.17-beta.2 → 1.0.18

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lx-frontend/wrap-element-ui",
3
- "version": "1.0.17-beta.2",
3
+ "version": "1.0.18",
4
4
  "description": "wrap-element-ui",
5
5
  "author": "",
6
6
  "main": "src/components/index.ts",
@@ -231,7 +231,7 @@
231
231
  <!-- 自定义编辑 -->
232
232
  <slot
233
233
  v-if="column.editSlotName"
234
- v-bind="{scope, column}"
234
+ v-bind="returnAnyType({ scope, column })"
235
235
  :name="column.editSlotName"
236
236
  />
237
237
  <!-- 内置编辑类型 -->
@@ -425,6 +425,10 @@ const showingColumns = ref<string[]>([]); // 表格中实际展示的列
425
425
  const leftFixedColumnCount = ref(0) // 左侧固定列数量
426
426
  const viewSettingDragSortOptions = ref<IColumnConfig[]>([])
427
427
 
428
+ const returnAnyType = (params): any => {
429
+ return params
430
+ }
431
+
428
432
  const actualColumns = computed(() => {
429
433
  const res: IColumnConfig[] = [];
430
434
  let cnt = leftFixedColumnCount.value;