From 6b2cf4b46e4015bf835f943dcbce54873d1dc025 Mon Sep 17 00:00:00 2001 From: viniciusteixeiradias Date: Wed, 11 Sep 2024 22:04:08 +1000 Subject: [PATCH] docs: fix an attribute name in the vue 2.5 doc --- 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 }>() ```