[Vuejs]-Register component in vue,js

0👍

A local component registration like you are doing has two parts. You need to specify the tag-name, then the source. Like this…

components: {
    'example': example,
    'equiposcrear' : equiposcrear,
    'equipos' : equipos,
    'cargardiesel' : cargardiesel
}
    

Here’s the doc.

Leave a comment