From a05e1caf01881f1c352b79e5e5a37e34f2814a04 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=88=98=E4=B8=93?= Date: Fri, 17 Jun 2022 11:36:13 +0800 Subject: [PATCH] fix: fix typo --- docs/guide/essentials/forms.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/guide/essentials/forms.md b/docs/guide/essentials/forms.md index e90195ee87..50e0edd3d5 100644 --- a/docs/guide/essentials/forms.md +++ b/docs/guide/essentials/forms.md @@ -366,7 +366,7 @@ Assume we have a form that uses the Vuetify textarea: @@ -398,7 +398,7 @@ test('emits textarea value on click', async () => { wrapper.find('.submit').trigger('click') - expect(wrapper.emitted('submit')[0][0]).toEqual({ description }) + expect(wrapper.emitted('submit')[0][0]).toEqual(description) }) ```