[Vuejs]-Property or method is not defined on the instance but refenced during render

0👍

My guess is that your problem is here:

components: [
    Client
],

Components should be an object, not an array:

components: {
    Client
},

Everything else looks OK to me.

Leave a comment