Duplicate key in Element table VueJS

Same key for different elements in the loop is causing this warning. You can avoid this using different key for different v-for loops. In your case, row-key="treeId" is getting duplicate values for "treeId". Make sure to pass unique values to row-key.

`https://codepen.io/shwetas7/pen/PoJXZwN`