Skip to content

Commit

Permalink
Style(v-model): Set the example more readable #1488
Browse files Browse the repository at this point in the history
  • Loading branch information
tisma95 committed Nov 28, 2024
1 parent 49af0ac commit 8af1b0e
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions src/guide/components/v-model.md
Original file line number Diff line number Diff line change
Expand Up @@ -99,11 +99,15 @@ const model = defineModel({ default: 0 })
:::warning
Si vous avez une valeur `default` pour la propriété `defineModel` et que vous ne fournissez aucune valeur pour cette propriété à partir du composant parent, cela peut provoquer une désynchronisation entre les composants parent et enfant. Dans l'exemple ci-dessous, le composant parent `myRef` est undefined, mais le composant enfant `model` vaut 1 :

**Composant enfant :**

```js
// composant enfant :
const model = defineModel({ default: 1 })
```

// composant parent :
**Composant parent :**

```
const myRef = ref()
```

Expand Down

0 comments on commit 8af1b0e

Please sign in to comment.