Skip to content

Commit

Permalink
- Solved issue freearhey#52
Browse files Browse the repository at this point in the history
  • Loading branch information
Jefferson Silva committed Oct 10, 2018
1 parent 21a0f28 commit 09e2500
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "vue2-filters",
"version": "0.3.0",
"version": "0.3.1",
"description": "The list of standard filters Vue.js 1.* adapted for use in Vue.js 2.*",
"main": "dist/vue2-filters.js",
"scripts": {
Expand Down
8 changes: 4 additions & 4 deletions src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ var Vue2Filters = {

Vue.mixin({
methods: {
limitBy: arrayFilters.limitBy,
filterBy: arrayFilters.filterBy,
orderBy: arrayFilters.orderBy,
find: arrayFilters.find
limitBy2: arrayFilters.limitBy,
filterBy2: arrayFilters.filterBy,
orderBy2: arrayFilters.orderBy,
find2: arrayFilters.find
}
})
}
Expand Down

1 comment on commit 09e2500

@akhoury
Copy link

@akhoury akhoury commented on 09e2500 Nov 6, 2018

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

that's a breaking change

Please sign in to comment.