Skip to content

Commit 308f479

Browse files
authored
docs: remove unnecessary props using (#2957)
Update v-model.md
1 parent 8a1da00 commit 308f479

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/guide/components/v-model.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ const emit = defineEmits(['update:modelValue'])
6868
6969
<template>
7070
<input
71-
:value="props.modelValue"
71+
:value="modelValue"
7272
@input="emit('update:modelValue', $event.target.value)"
7373
/>
7474
</template>

0 commit comments

Comments
 (0)