This page assumes you've already read the Components Basics. Read that first if you are new to components.
When registering a component, it will always be given a name. For example, in the global registration we've seen so far:
const app = Vue.createApp({...}) app.component('my-component-name', { /* ... */ })
The component's name is the first argument of app.component
. In the example above, the component's name is "my-component-name".
The name you give a component may depend on where you intend to use it. When using a component directly in the DOM (as opposed to in a string template or single-file component), we strongly recommend following the W3C rules (opens new window) for custom tag names:
By doing so, this will help you avoid conflicts with current and future HTML elements.
You can see other recommendations for component names in the Style Guide.
When defining components in a string template or a single-file component, you have two options for naming them:
app.component('my-component-name', { /* ... */ })
When defining a component with kebab-case, you must also use kebab-case when referencing its custom element, such as in <my-component-name>
.
app.component('MyComponentName', { /* ... */ })
When defining a component with PascalCase, you can use either case when referencing its custom element. That means both <my-component-name>
and <MyComponentName>
are acceptable. Note, however, that only kebab-case names are valid directly in the DOM (i.e. non-string templates).
So far, we've only created components using app.component
:
Vue.createApp({...}).component('my-component-name', { // ... options ... })
These components are globally registered for the application. That means they can be used in the template of any component instance within this application:
const app = Vue.createApp({}) app.component('component-a', { /* ... */ }) app.component('component-b', { /* ... */ }) app.component('component-c', { /* ... */ }) app.mount('#app')
<div id="app"> <component-a></component-a> <component-b></component-b> <component-c></component-c> </div>
This even applies to all subcomponents, meaning all three of these components will also be available inside each other.
Global registration often isn't ideal. For example, if you're using a build system like Webpack, globally registering all components means that even if you stop using a component, it could still be included in your final build. This unnecessarily increases the amount of JavaScript your users have to download.
In these cases, you can define your components as plain JavaScript objects:
const ComponentA = { /* ... */ } const ComponentB = { /* ... */ } const ComponentC = { /* ... */ }
Then define the components you'd like to use in a components
option:
const app = Vue.createApp({ components: { 'component-a': ComponentA, 'component-b': ComponentB } })
For each property in the components
object, the key will be the name of the custom element, while the value will contain the options object for the component.
Note that locally registered components are not also available in subcomponents. For example, if you wanted ComponentA
to be available in ComponentB
, you'd have to use:
const ComponentA = { /* ... */ } const ComponentB = { components: { 'component-a': ComponentA } // ... }
Or if you're using ES2015 modules, such as through Babel and Webpack, that might look more like:
import ComponentA from './ComponentA.vue' export default { components: { ComponentA } // ... }
Note that in ES2015+, placing a variable name like ComponentA
inside an object is shorthand for ComponentA: ComponentA
, meaning the name of the variable is both:
If you're not using a module system with import
/require
, you can probably skip this section for now. If you are, we have some special instructions and tips just for you.
If you're still here, then it's likely you're using a module system, such as with Babel and Webpack. In these cases, we recommend creating a components
directory, with each component in its own file.
Then you'll need to import each component you'd like to use, before you locally register it. For example, in a hypothetical ComponentB.js
or ComponentB.vue
file:
import ComponentA from './ComponentA' import ComponentC from './ComponentC' export default { components: { ComponentA, ComponentC } // ... }
Now both ComponentA
and ComponentC
can be used inside ComponentB
's template.
© 2013–present Yuxi Evan You
Licensed under the MIT License.
https://v3.vuejs.org/guide/component-registration.html