let RowBase = pillar.vuecomponents.table.rows.RowBase; class AttractRowBase extends RowBase { constructor(underlyingObject) { super(underlyingObject); pillar.events.Nodes.onUpdated(this.getId(), this.onRowUpdated.bind(this)); } onRowUpdated(event, updatedObj) { this.underlyingObject = updatedObj; } } export { AttractRowBase }