Skip to content

v4.1.4

Compare
Choose a tag to compare
@dntzhang dntzhang released this 17 Nov 01:00
· 291 commits to master since this release
  • [Fix] Solving Recursive update problem

Before this version, it will lead to infinite recursion by this way:

beforeRender() {
  this.data.a = { b: 1 }
}

or

render() {
  this.data.b = Math.random()
  ...
}

It's fixed now! It's not infinite recursion.