[Vuejs]-Vue.js – Vuetify : Unknown custom element: [ … ] – did you register the component correctly?

0👍

module.exports = {
    name: "track-list",
    components: {
        [ ... ]
    },
    data() {
        return {
           [ ... ]
        };
    }
 }

Should be

module.exports = {
    name: "track-list",
    components: {
        componentName
    },
    data() {
        return {
           variableName: ''
        };
    }
 }

Components should include all the custom components you are using.(componentName in example). Remove the components part if you are not using any,

Data should include all the variables you are using for that component(variableName in example).

Leave a comment