@lx-frontend/wrap-element-ui 1.0.12-beta.3 → 1.0.13

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.12-beta.3",
3
+ "version": "1.0.13",
4
4
  "description": "wrap-element-ui",
5
5
  "author": "",
6
6
  "main": "src/components/index.ts",
@@ -105,7 +105,7 @@ export function useColumnHeaderOperation({ props, tableDomRef, emit, showingColu
105
105
  const closeSortAndFilterPopover = (exceptProp?: string) => {
106
106
  document.querySelectorAll('span[data-popper-name]').forEach((item: any) => {
107
107
  if (!exceptProp || exceptProp !== item.dataset.prop) {
108
- item?.__vue__?.doClose();
108
+ item?.__vue__?.doClose?.();
109
109
  }
110
110
  });
111
111
  }