@observable obj = { name: "ajanuw", age: 22, }; @computed get list() { return _.toPairs(this.obj); } {list.map(([k, v]) => (<div>{k}:{v}</div>))}