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 }>() ```