We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 513e2bf commit cad2d57Copy full SHA for cad2d57
src/index.js
@@ -23,7 +23,7 @@ const LibraryModule = {
23
Vue.filter("moment", (value, isUtc = false, ...args) => {
24
// add utc support on moment(true)
25
const filterMoment = isUtc ? moment.utc : moment;
26
- return filterMoment(args);
+ return filterMoment(value, args);
27
});
28
29
// filter to wire moment duration
0 commit comments