From 00c033628f8d61d4437b420214ae5eda7f087b37 Mon Sep 17 00:00:00 2001 From: liulun Date: Sat, 1 Aug 2020 20:10:46 +0800 Subject: [PATCH] A wrong method name in annotation A wrong method name in annotation --- src/guide/typescript-support.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/guide/typescript-support.md b/src/guide/typescript-support.md index 043c948cd7..a571704a98 100644 --- a/src/guide/typescript-support.md +++ b/src/guide/typescript-support.md @@ -204,7 +204,7 @@ const Component = defineComponent({ setup() { const year = ref(2020) - const result = year.value.split('') // => Property 'filter' does not exist on type 'number' + const result = year.value.split('') // => Property 'split' does not exist on type 'number' } }) ```