Filters
capitalize
‘abc’ => ‘Abc’
uppercase
‘abc’ => ‘ABC’
lowercase
‘ABC’ => ‘abc’
currency
- this filter takes one optional argument
12345 => $12,345.00
You can pass an optional argument which will be used as the currency symbol (default is $).
pluralize
- this filter takes at least one argument
1 => ‘1 item’
2 => ‘2 items’
When there is exactly one arg, plural forms simply add an “s” at the end. When there are more than one argument, the arguments will be used as array of strings corresponding to the single, double, triple … forms of the word to be pluralized. When the number to be pluralized exceeds the length of the args, it will use the last entry in the array.
Example:
1 | <span v-text="date | pluralize st nd rd th"></span> |
Will result in:
1 => ‘1 st’
2 => ‘2 nd’
3 => ‘3 rd’
4 => ‘4 th’
5 => ‘5 th’
key
- this filter only works in
v-on
- this filter takes exactly one argument
Wrap the handler so it only gets called when the keyCode matches the argument. You can also use string aliases for a few commonly-used keys:
- enter
- tab
- delete
- esc
- up
- down
- left
- right
Example:
1 | <input v-on="keyup:doSomething | key enter"> |
doSomething
will only be called when the Enter key is pressed.
filterBy
Syntax: filterBy searchKey [in dataKey]
.
- this filter only works in
v-repeat
- this is a computed filter
Make v-repeat
only display a filtered version of the source Array. The searchKey
argument is a property key on the context ViewModel. The value of that property will be used as the string to search for:
1 | <input v-model="searchText"> |
When the filter is applied, it will filter the users
Array by recursively searching for the current value of searchText
on each item in the Array. For example, if an item is { name: 'Jack', phone: '555-123-4567' }
and searchText
has value '555'
, the item will be considered a match.
Optionally, you can narrow down which specific property to search in with the optional in dataKey
argument:
1 | <input v-model="searchText"> |
Now the item will only match if the value of searchText
is found in its name
property. So searchText
with value '555'
will no longer match this item, but 'Jack'
will.
Finally, you can use quotes to indicate literal arguments:
1 | <ul> |
orderBy
Syntax: orderBy sortKey [reverseKey]
.
- this filter only works in
v-repeat
- this is a computed filter
Sort v-repeat
‘s displayed result. The sortKey
argument is a property key on the context ViewModel. The value of that property will be used as the key to sort the Array items with. The optional reverseKey
argument is also a property key on the context ViewModel, but the value’s truthiness will determine whether the result should be reversed.
1 | <ul> |
1 | new Vue({ |
You can also use quotes for literal sort key. To indicate a literal reverse, use -1
:
1 | <ul> |