[Vuejs]-How to import vue components?

1👍

You have 2 way to import component the first local if this components will be used in only one or 2 page you can import it like this

<script> 
import ButtonCounter from './ButtonCounter.vue' 
export default { components: { ButtonCounter } } 
</script>

If this components will be used by too much page you can import it globaly like this in the main.js

import MyComponent from './App.vue' 
app.component('ButtonCounter', ButtonCounter)

Leave a comment