Skip to content

value and default work together

Choose a tag to compare

@justinbmeyer justinbmeyer released this 03 Oct 14:18
· 117 commits to master since this release

This makes default work with the value property behavior.

For example:

prop: {
  default: 21,
  value( {lastSet, resolve} ){
    resolve( lastSet.value );
  }
}

PR: #398