import { Component } from 'san' const TEMPLATE = '
{{title | real}}
' export default class MyComponent extends Component { static template = TEMPLATE static filters = { real: function (x) { return 'real' + x } } }