@lx-frontend/wrap-element-ui 0.4.3-beta2 → 0.4.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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lx-frontend/wrap-element-ui",
3
- "version": "0.4.3-beta2",
3
+ "version": "0.4.5",
4
4
  "description": "wrap-element-ui",
5
5
  "author": "Vic <18373209286@163.com>",
6
6
  "main": "packages/index.js",
@@ -13,6 +13,7 @@
13
13
  <FElTable
14
14
  v-loading="loading"
15
15
  ref="lxTableRef"
16
+ v-bind="$attrs"
16
17
  :data="tableData"
17
18
  :empty-text="(customConfig || {}).emptyText || ''"
18
19
  @selection-change="handleSelectionChange"
@@ -25,7 +26,7 @@
25
26
  <ElTableColumn v-if="customConfig.selection && customConfig.selection.isOpenSelection" type="selection" :width="customConfig.selection.width">
26
27
  </ElTableColumn>
27
28
  <ElTableColumn
28
- v-for="(item, index) in columns"
29
+ v-for="(item, index) in cloumns"
29
30
  :key="`${item}_${index}`"
30
31
  :label="item"
31
32
  :prop="keys[index]"
@@ -190,7 +191,7 @@
190
191
  type : Array,
191
192
  default: () => [],
192
193
  },
193
- columns: {
194
+ cloumns: {
194
195
  type : Array,
195
196
  default: () => [],
196
197
  },