You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
With the following code, I would expect Vue to inject the type as a string, just like it does when just using {{ type }}. However, when including a filter, Vue will remove the class attribute altogether.
<li class='{{ type | itemTypeToString }} my-class'>My Item</li>
Also, if you have the variable before the existing classes, like above, Vue will throw Unknown filter: itemTypeToString). But, if you place the variable after the existing classes, it will throw Error parsing expression: "item "+(type
Any ideas? I just pulled down the latest release and it still happens.