From 0fa27531aa3c5e5c13093a5678c0da534e524f06 Mon Sep 17 00:00:00 2001 From: pany <939630029@qq.com> Date: Thu, 5 Sep 2024 11:29:56 +0800 Subject: [PATCH] docs: fix typo --- posts/vue-3-5.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/posts/vue-3-5.md b/posts/vue-3-5.md index 9a28d3a..681b52c 100644 --- a/posts/vue-3-5.md +++ b/posts/vue-3-5.md @@ -46,7 +46,7 @@ const props = withDefaults( ```ts const { count = 0, msg = 'hello' } = defineProps<{ count?: number - message?: string + msg?: string }>() ```