evui 3.4.76 → 3.4.78

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.76",
3
+ "version": "3.4.78",
4
4
  "description": "A EXEM Library project",
5
5
  "author": "exem <dev_client@ex-em.com>",
6
6
  "license": "MIT",
@@ -705,6 +705,7 @@ export default {
705
705
  onMounted(() => {
706
706
  stores.treeStore = setTreeNodeStore();
707
707
  stores.originStore = cloneDeep(stores.treeStore);
708
+ setSortInfo(props.columns, false);
708
709
  document.addEventListener('wheel', onMouseWheel, { capture: false });
709
710
  document.addEventListener('scroll', onMouseWheel, { capture: true });
710
711
  });
@@ -728,9 +729,8 @@ export default {
728
729
 
729
730
  watch(
730
731
  () => props.columns,
731
- (newColumns) => {
732
+ () => {
732
733
  initColumnSettingInfo();
733
- setSortInfo(newColumns, false);
734
734
  }, { deep: true, immediate: true },
735
735
  );
736
736
  watch(
@@ -58,7 +58,7 @@
58
58
  <button
59
59
  v-else
60
60
  class="tree-expand-icon"
61
- @click="onExpand(node)"
61
+ @click.stop="onExpand(node)"
62
62
  >
63
63
  <i></i>
64
64
  </button>