Skip to content

Commit 305a7e4

Browse files
committed
fix: form make as union
1 parent 6f38d54 commit 305a7e4

File tree

1 file changed

+1
-1
lines changed
  • packages/components-vue/src/components/form

1 file changed

+1
-1
lines changed

packages/components-vue/src/components/form/Simple.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@
8989
/**
9090
* Make model
9191
*/
92-
make?: (...args: P) => tFormInput[] | Promise<tFormInput[]>;
92+
make?: ((...args: P) => tFormInput[]) | ((...args: P) => Promise<tFormInput[]>);
9393
/** Make all inputs read only by disabling them */
9494
readonly?: boolean;
9595
}

0 commit comments

Comments
 (0)