kogarashisan / LiquidLava

Framework for building user interfaces
http://www.lava-framework.com/
MIT License
17 stars 3 forks source link

fields with calculated value and dependencies. #127

Open kogarashisan opened 9 years ago

kogarashisan commented 9 years ago

Something like this:

title: {
  get: function() { return this.get('first_name') + ' ' + ...}
  depends:['first_name', 'last_name']
}