fix: when the form is opened repeatedly, the state is unexpectedly destroyed (#4406)

This commit is contained in:
Vben 2024-09-14 22:07:50 +08:00 committed by GitHub
parent c3d0102cda
commit 02c4014ae3
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 8 additions and 1 deletions

View File

@ -177,7 +177,7 @@ export class FormApi {
} }
unmounted() { unmounted() {
this.state = null; // this.state = null;
this.isMounted = false; this.isMounted = false;
this.stateHandler.reset(); this.stateHandler.reset();
} }

View File

@ -1,13 +1,20 @@
<script lang="ts" setup> <script lang="ts" setup>
import { useVbenModal } from '@vben/common-ui'; import { useVbenModal } from '@vben/common-ui';
import { message } from 'ant-design-vue';
import { useVbenForm } from '#/adapter'; import { useVbenForm } from '#/adapter';
defineOptions({ defineOptions({
name: 'FormModelDemo', name: 'FormModelDemo',
}); });
function onSubmit(values: Record<string, any>) {
message.info(JSON.stringify(values)); //
}
const [Form, formApi] = useVbenForm({ const [Form, formApi] = useVbenForm({
handleSubmit: onSubmit,
schema: [ schema: [
{ {
component: 'Input', component: 'Input',