From 5a2942763679cd9444a928026ebc4fadc246aaac Mon Sep 17 00:00:00 2001 From: anhle Date: Sun, 11 Jul 2021 23:05:30 +0700 Subject: [PATCH] :memo: update typo --- docs/usage.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/usage.md b/docs/usage.md index 6999647..5fd92ae 100644 --- a/docs/usage.md +++ b/docs/usage.md @@ -295,7 +295,7 @@ const { result } = useValidate(data, rules, options); If you want the `$touch` method to be called along with the `$test` method, use the `autoTouch` option. ```js -const options = reactive({ autoTouch: true }); +const options = reactive({ touchOnTest: true }); const { result } = useValidate(data, rules, options); ```