Skip to content
Advertisement

How do I use Vue.component with modules or Vue CLI?

I’m stuck on how to declare Vue.component inside export default

this is from the tutorial by vuejs.org

enter image description here

instead of using var app = new vue, I use

JavaScript

and i dont know where to write Vue.component in export default app

thank you in advanced!

Advertisement

Answer

Components can be registered globally or locally. Vue.component is the way to register globally, which means all other components can then use this component in their templates.

Global components

When using a build tool like Vue CLI, do this in main.js:

JavaScript

-or-

Local components

Or you can register a component in a specific component using the components option.

JavaScript

So your App.vue would become:

JavaScript
User contributions licensed under: CC BY-SA
8 People found this is helpful
Advertisement