I migrated from the stable version 1.7 to @next.
I found there may be a change in the structure of data passed to cell-clicked method. I have the event handler like this as usual.
onCellClicked(data, field, event) {
console.log("--------" + JSON.stringify(data));
this.$refs[this.vuetableRef].toggleDetailRow(data.id);
},
with v1.7, the console prints

with @next or v2.0, I see the data object nested in this data object and other objects, i.e; fields and data.id is of course undefined.

So for detail-row-component to work for @next version in my case, I had to make the trivial change from data.id to data.data.id like this:
this.$refs[this.vuetableRef].toggleDetailRow(data.data.id);
, and it works.
I migrated from the stable version 1.7 to @next.
I found there may be a change in the structure of data passed to cell-clicked method. I have the event handler like this as usual.
with v1.7, the console prints
with @next or v2.0, I see the data object nested in this
dataobject and other objects, i.e;fieldsanddata.idis of courseundefined.So for
detail-row-componentto work for @next version in my case, I had to make the trivial change fromdata.idtodata.data.idlike this:this.$refs[this.vuetableRef].toggleDetailRow(data.data.id);, and it works.