Skip to content

v1.0.0-rc.1

Pre-release
Pre-release
Compare
Choose a tag to compare
@davej davej released this 03 Feb 16:02
· 39 commits to master since this release

You can now define methods using angular expressions. Whenever the method is called it will evaluate the expression and return the expression's result. Often, an expression will be much more concise and readable than a full method definition.

Example usage:

  methods: {
    _getIncompleteTodos: 'todos | filter:{ completed: false }',
  }