Skip to content

Commit

Permalink
docs: remove unnecessary props using (#2957)
Browse files Browse the repository at this point in the history
Update v-model.md
  • Loading branch information
11Alone11 authored Aug 13, 2024
1 parent 8a1da00 commit 308f479
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/guide/components/v-model.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ const emit = defineEmits(['update:modelValue'])
<template>
<input
:value="props.modelValue"
:value="modelValue"
@input="emit('update:modelValue', $event.target.value)"
/>
</template>
Expand Down

0 comments on commit 308f479

Please sign in to comment.