After last version binary operator `|` in directives is parsed as Filter instead of `BinaryExpression` ```vue <template> <input v-html="foo | bar"> </template> <script> export default { data() { return { foo: 200, bar: 5 } } } </script> ```