Skip to content

Commit

Permalink
Merge pull request #4 from mesemus/console-logging
Browse files Browse the repository at this point in the history
Removed console logs, thus fixing bugs #1, #3
  • Loading branch information
mesemus authored Oct 29, 2019
2 parents ce6c5f7 + 366b1c4 commit 7e1244d
Show file tree
Hide file tree
Showing 3 changed files with 588 additions and 514 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "vuelidate-property-decorators",
"version": "1.0.27",
"version": "1.0.28",
"main": "index.js",
"license": "MIT",
"description": "A thin wrapper of vuelidate library to simplify its usage with vue-class-component.",
Expand Down
2 changes: 0 additions & 2 deletions src/vuelidate-decorators.js
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,6 @@ export function Validations(): PropertyDecorator {
}
componentOptions.__validations['__validations__'] = k;
componentOptions.validations = validationCreator;
console.log('Validations: Component options', componentOptions);
})
}

Expand Down Expand Up @@ -102,6 +101,5 @@ export function Validate(rules: any): PropertyDecorator {
}
componentOptions.__validations[k] = rules;
componentOptions.validations = validationCreator;
console.log('Validation: Component options', componentOptions);
});
}
Loading

0 comments on commit 7e1244d

Please sign in to comment.