Showing
2 changed files
with
3 additions
and
2 deletions
... | ... | @@ -169,8 +169,6 @@ |
169 | 169 | } |
170 | 170 | ); |
171 | 171 | |
172 | - const { containerEl } = useSort(emit, getFormValues); | |
173 | - | |
174 | 172 | const handleSettingOk = (data: DataSourceType) => { |
175 | 173 | const { uuid } = data; |
176 | 174 | const _dataSource = cloneDeep(getFormValues()); |
... | ... | @@ -182,6 +180,8 @@ |
182 | 180 | emit('update:dataSource', _dataSource); |
183 | 181 | }; |
184 | 182 | |
183 | + const { containerEl } = useSort(emit, getFormValues); | |
184 | + | |
185 | 185 | defineExpose({ |
186 | 186 | getFormValues, |
187 | 187 | validate, | ... | ... |