We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1a8b6f6 commit 666561eCopy full SHA for 666561e
src/guide/components/registration.md
@@ -8,7 +8,7 @@ A Vue component needs to be "registered" so that Vue knows where to locate its i
8
9
## Global Registration {#global-registration}
10
11
-We can make components available globally in the current [Vue application](/guide/essentials/application) using the `app.component()` method:
+We can make components available globally in the current [Vue application](/guide/essentials/application) using the `.component()` method:
12
13
```js
14
import { createApp } from 'vue'
@@ -33,7 +33,7 @@ import MyComponent from './App.vue'
33
app.component('MyComponent', MyComponent)
34
```
35
36
-The `app.component()` method can be chained:
+The `.component()` method can be chained:
37
38
39
app
0 commit comments