@tmagic/form 1.3.0-alpha.3 → 1.3.0-alpha.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.
@@ -757,7 +757,7 @@
757
757
  const mForm = vue.inject("mForm");
758
758
  const expand = vue.ref(false);
759
759
  vue.watchEffect(() => {
760
- expand.value = !props.index;
760
+ expand.value = props.config.expandAll || !props.index;
761
761
  });
762
762
  const rowConfig = vue.computed(() => ({
763
763
  type: "row",