evui 3.4.86 → 3.4.87

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": "evui",
3
- "version": "3.4.86",
3
+ "version": "3.4.87",
4
4
  "description": "A EXEM Library project",
5
5
  "author": "exem <dev_client@ex-em.com>",
6
6
  "license": "MIT",
@@ -315,6 +315,7 @@ export const useDropdown = (param) => {
315
315
  mv.value.splice(idx, 1);
316
316
  }
317
317
  allCheck.value = mv.value.length === filteredItems.value.filter(item => !item.disabled).length;
318
+ mv.value = [...mv.value];
318
319
  changeMv();
319
320
  };
320
321
  const clickItem = !props.multiple ? singleClickItem : multipleClickItem;