Skip to content

Commit

Permalink
Update forms.md
Browse files Browse the repository at this point in the history
:key="option.value" is unnecessary (#662) (#663)

Co-authored-by: Shahid <[email protected]>
Co-authored-by: modelair <[email protected]>
Co-authored-by: AliG1000 <[email protected]>
  • Loading branch information
4 people authored Sep 22, 2023
1 parent 2cb2a27 commit 7b24555
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/api/render-function.md
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ Utilisée pour résoudre manuellement un composant enregistré via son nom.
<div class="composition-api">

```js
const { h, resolveComponent } = Vue
import { h, resolveComponent } from 'vue'
export default {
setup() {
Expand All @@ -216,7 +216,7 @@ Utilisée pour résoudre manuellement un composant enregistré via son nom.
<div class="options-api">

```js
const { h, resolveComponent } = Vue
import { h, resolveComponent } from 'vue'
export default {
render() {
Expand Down
2 changes: 1 addition & 1 deletion src/guide/essentials/forms.md
Original file line number Diff line number Diff line change
Expand Up @@ -341,7 +341,7 @@ export default {

```vue-html
<select v-model="selected">
<option v-for="option in options" :key="option.value" :value="option.value">
<option v-for="option in options" :value="option.value">
{{ option.text }}
</option>
</select>
Expand Down

1 comment on commit 7b24555

@vercel
Copy link

@vercel vercel bot commented on 7b24555 Sep 22, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

docs-fr – ./

docs-fr.vercel.app
docs-fr-vuejs.vercel.app
docs-fr-git-main-vuejs.vercel.app
fr.vuejs.org

Please sign in to comment.