[Vuejs]-Why are Vuetify component options unelectable with specific key names?

0👍

Just as Radeanu said on his comment, objects that have a header or divider property are considered special cases. Currently there’s no way to change that behaivor in vuetify, so, you’ll need to either rename/remove that property from your objects array.

    this.arrOfObjs.forEach( function(data) {
        data['headers'] = data['header']
        delete data['header'];
    });

Leave a comment