Skip to content

Commit 9d49211

Browse files
committed
Fix shallowMount signature
1 parent b405de9 commit 9d49211

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

docs/api/index.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1628,10 +1628,9 @@ interface MountingOptions<Props, Data = {}> {
16281628
props?: (RawProps & Props) | ({} extends Props ? null : never)
16291629
slots?: { [key: string]: Slot } & { default?: Slot }
16301630
global?: GlobalMountOptions
1631-
shallow?: boolean
16321631
}
16331632

1634-
function mount(Component, options?: MountingOptions): VueWrapper
1633+
function shallowMount(Component, options?: MountingOptions): VueWrapper
16351634
```
16361635

16371636
**Details:**

0 commit comments

Comments
 (0)