Formatters are functions that mutate the incoming and/or outgoing value of a binding. You can use them to format dates, numbers, currencies, etc. and because they work in a similar fashion to the Unix pipeline, the output of each feeds directly as input to the next one, so you can stack as many of them together as you like.
Formatters are applied by piping them to binding declarations using | as a delimiter.
<spanwr-text="event.startDate | date"></span>
Computed
Computed values can be stored on an object as functions. Use the watch formatter to track changes on one or more dependent properties that must be passed as arguments.