Skip to content

Commit fe111d7

Browse files
committed
docs: use HTMLElement instead of DOM node
1 parent 6bc105e commit fe111d7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/en/api/wrapper/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ A `Wrapper` is an object that contains a mounted component or vnode and methods
77
- **Properties:**
88

99
`vm` `Component`: this is the vue instance. You can access all the [instance methods and properties of a vm](https://vuejs.org/v2/api/#Instance-Properties) with `wrapper.vm`. This only exists on Vue component wrappers
10-
`element` `DOM node`: the root DOM node of the wrapper
10+
`element` `HTMLElement`: the root DOM node of the wrapper
1111
`options` `Object`: Object containing vue-test-utils options passed to `mount` or `shallow`
12-
`options.attachedToDom` `Boolean`: True if attachToDom was passed to `mount` or `shallow`
12+
`options.attachedToDom` `Boolean`: True if attachToDom was passed to `mount` or `shallow`
1313

1414
- **Methods:**
1515

0 commit comments

Comments
 (0)