Skip to content

Commit

Permalink
Fix(application): Set the component name in PascalCase (#1528)
Browse files Browse the repository at this point in the history
  • Loading branch information
tisma95 authored Jan 13, 2025
1 parent c5745db commit 9b0b287
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions src/api/application.md
Original file line number Diff line number Diff line change
Expand Up @@ -123,12 +123,12 @@ Enregistre un composant global si un nom et une définition de composant sont pa
const app = createApp({})
// enregistre un objet d'options
app.component('my-component', {
app.component('MyComponent', {
/* ... */
})
// récupère un composant enregistré
const MyComponent = app.component('my-component')
const MyComponent = app.component('MyComponent')
```

- **Voir aussi** [Enregistrement des composants](/guide/components/registration)
Expand Down Expand Up @@ -156,17 +156,17 @@ Enregistre une directive personnalisée globale si un nom et une définition de
})
// enregistrement (options de directive)
app.directive('my-directive', {
app.directive('myDirective', {
/* custom directive hooks */
})
// enregistrement (raccourci d'une fonction de directive)
app.directive('my-directive', () => {
app.directive('myDirective', () => {
/* ... */
})
// récupère une directive enregistrée
const myDirective = app.directive('my-directive')
const myDirective = app.directive('myDirective')
```

- **Voir aussi** [Directives personnalisées](/guide/reusability/custom-directives)
Expand Down Expand Up @@ -636,13 +636,13 @@ Configurer un préfixe pour tous les identifiants générés via [useId()](/api/
- **Example**

```js
app.config.idPrefix = 'my-app'
app.config.idPrefix = 'myApp'
```

```js
// in a component:
const id1 = useId() // 'my-app:0'
const id2 = useId() // 'my-app:1'
const id1 = useId() // 'myApp:0'
const id2 = useId() // 'myApp:1'
```

## app.config.throwUnhandledErrorInProduction <sup class="vt-badge" data-text="3.5+" /> {#app-config-throwunhandlederrorinproduction}
Expand Down

0 comments on commit 9b0b287

Please sign in to comment.