The list of standard filters Vue.js 1.* adapted for use in Vue.js 2.*
Simply include vue2-filters
after Vue and it will install itself automatically:
<script src="vue.js"></script>
<script src="vue2-filters.min.js"></script>
<script src="https://unpkg.com/vue/dist/vue.js"></script>
<script src="https://cdn.jsdelivr.net/vue2-filters/0.1.9/vue2-filters.min.js"></script>
npm install vue2-filters
When used with a module system, you must explicitly install the filters via Vue.use()
:
import Vue from 'vue'
import Vue2Filters from 'vue2-filters'
Vue.use(Vue2Filters)
You don't need to do this when using global script tags.
-
Example:
{{ msg | capitalize }} // 'abc' => 'Abc'
-
Example:
{{ msg | uppercase }} // 'abc' => 'ABC'
-
Example:
{{ msg | lowercase }} // 'ABC' => 'abc'
-
Arguments:
{String} [placeholder]
-
Example:
{{ msg | placeholder('Text if msg is missing') }} // '' => 'Text if msg is missing'
-
Arguments:
{Number} [length] - default: 15
-
Example:
{{ msg | truncate(10) }} // 'lorem ipsum dolor' => 'lorem ipsu...'
-
Arguments:
{String} [symbol] - default: '$'
{Number} [decimal places] - default: 2
-
Example:
{{ amount | currency }} // 12345 => $12,345.00
Use a different symbol:
{{ amount | currency('£') }} // 12345 => £12,345.00
Use a different number decimal places:
{{ amount | currency('₽', 0) }} // 12345 => ₽12,345
-
Arguments:
{String} single, [double, triple, ...]
-
Example:
{{count}} {{count | pluralize('item')}} // 1 => '1 item' // 2 => '2 items'
{{date}} {{date | pluralize('st','nd','rd','th')}} // 1 => '1st' // 2 => '2nd' // 3 => '3rd' // 4 => '4th' // 5 => '5th'
-
Arguments:
{Array} [items]
{Number} [limit]
{Number} [offset]
-
Example:
<!-- only display first 10 items --> <div v-for="item in limitBy(items, 10)"></div> <!-- display items 5 to 15 --> <div v-for="item in limitBy(items, 10, 5)"></div>
-
Arguments:
{Array} [items]
{String} [query]
{String} [searchKey]
-
Example:
<!-- only items that contain the target string "hello" will be displayed --> <div v-for="item in filterBy(items, 'hello')"> <!-- the filter will only search for "Jack" in the name field of each user object --> <div v-for="user in filterBy(users, 'Jack', 'name')"> <!-- the filter will only search for "Bonnie" in the name or age fields of each user object --> <div v-for="user in filterBy(users, 'Bonnie', 'name', 'age')">
-
Arguments:
{Array} [items]
{String} [sortKey]
{Number} [order] - default: 1
-
Example:
Sort users by name:
<ul> <li v-for="user in orderBy(users, 'name')"> {{ user.name }} </li> </ul>
In descending order:
<ul> <li v-for="user in orderBy(users, 'name', -1)"> {{ user.name }} </li> </ul>
If you find a bug or want to contribute to the code or documentation, you can help by submitting an issue or a pull request.