Skip to content

Commit cd5177f

Browse files
authored
fix: propsData deprecation suggestion (#2001)
At the moment it suggests to use `data` instead of `propsData` but it should be suggesting to use `props` instead
1 parent 9afae62 commit cd5177f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/types.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ export interface MountingOptions<Props, Data = {}> {
5353
*/
5454
props?: (RawProps & Props) | ({} extends Props ? null : never)
5555
/**
56-
* @deprecated use `data` instead.
56+
* @deprecated use `props` instead.
5757
*/
5858
propsData?: Props
5959
/**

0 commit comments

Comments
 (0)