The documentation for computed properties is not clear on support for parameters:
http://docs.ractivejs.org/0.8/computed-properties
In the example given, the first option under "Data context for computed properties" is to use a function in data that takes a parameter rather than a computed property. However, this then loses the dependency tracking of a computed property. When I try to add a parameter to a computed property, I get function not found errors.
I can easily reference the relevant properties from my template as parameters to a normal function to work around this, but this can be more verbose than necessary.
Is there any way to pass parameters from the template into a computed property?