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/dist/evui.common.js +123 -123
- package/dist/evui.common.js.map +1 -1
- package/dist/evui.umd.js +123 -123
- package/dist/evui.umd.js.map +1 -1
- package/dist/evui.umd.min.js +1 -1
- package/dist/evui.umd.min.js.map +1 -1
- package/package.json +1 -1
- package/src/components/treeGrid/TreeGrid.vue +2 -2
- package/src/components/treeGrid/TreeGridNode.vue +1 -1
package/package.json
CHANGED
|
@@ -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
|
-
(
|
|
732
|
+
() => {
|
|
732
733
|
initColumnSettingInfo();
|
|
733
|
-
setSortInfo(newColumns, false);
|
|
734
734
|
}, { deep: true, immediate: true },
|
|
735
735
|
);
|
|
736
736
|
watch(
|