Vue Component Registration
Global Registration
import { createApp } from 'vue';
const app = createApp({});
// Global Registration
app.component('MyComponent', {/* ... */});
// Chained Global Registration
app
.component('ComponentA', ComponentA)
.component('ComponentB', ComponentB)
.component('ComponentC', ComponentC);Local Registration
Last updated