vue.jsだと、vue.nextTickでできる this.$nextTick(()=>{ ... }); Javascriptでよく使われるのはsetTimeout setTimeout(()=>{ ... },0) Promiseでもで
ReactでUIを動的に変化させる実装をしていてEdge/IEで、 Assignment to read-only properties is not allowed in strict mode とエラった。 これは、 const cell = findDOMNode(this.refs.cell); let _rect = cell.getBoundingClientRect(); _rect.y += 10; みたいに、D