Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/guide/essentials/forms.md
Original file line number Diff line number Diff line change
Expand Up @@ -358,7 +358,7 @@ test('fills in the form', async () => {

What happens if your Input component is not that simple? You might be using a UI library, like Vuetify. If you rely on digging inside the markup to find the right element, your tests may break if the external library decides to change their internals.

In such cases you can use set the value directly, using the component instance and `setValue`.
In such cases you can set the value directly, using the component instance and `setValue`.

Assume we have a form that uses the Vuetify textarea:

Expand Down