Both of the following work in Vue 1: ```js <a href="{{ 'something' | linkHandler }}">link</a> <a :href="'something' | linkHandler">link</a> ``` Neither of them work in Vue 2.0, because you can only use filters inside interpolations, and you can't use interpolations as attributes anymore. Any way around this?