Skip to content

Commit c0173a6

Browse files
authored
Remove the app variable name from the method name
To be consitent with the rest of the guide, it should be displayed the method name (with the dot accessor) i.e.: https://vuejs.org/guide/essentials/application.html#mounting-the-app
1 parent 42a313b commit c0173a6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/guide/components/registration.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ A Vue component needs to be "registered" so that Vue knows where to locate its i
88

99
## Global Registration {#global-registration}
1010

11-
We can make components available globally in the current [Vue application](/guide/essentials/application) using the `app.component()` method:
11+
We can make components available globally in the current [Vue application](/guide/essentials/application) using the `.component()` method:
1212

1313
```js
1414
import { createApp } from 'vue'

0 commit comments

Comments
 (0)