Closed
Description
I have a directive that calls a sort method and passes an object of options:
<a v-on='click: sortRows({ column: "name" })'>Name</a>
...but, I get two errors:
Error parsing expression: sortRows({ column: "name" })
Directive "v-on:click: sortRows({ column: "name" })" expects a method.
I would expect this to work instead of accepting only primitive params.