diff --git a/docs/src/filter-example/PartialMatchFilterComponent.js b/docs/src/filter-example/PartialMatchFilterComponent.js index 23a6917..65b8b17 100644 --- a/docs/src/filter-example/PartialMatchFilterComponent.js +++ b/docs/src/filter-example/PartialMatchFilterComponent.js @@ -10,12 +10,10 @@ export default Vue.extend({ }, methods: { isFilterActive() { - console.log("isactive"); return this.text !== null && this.text !== undefined && this.text !== ''; }, doesFilterPass(params){ - console.log("filterpass"); return !this.text || this.text.toLowerCase() .split(" ") .every((filterWord) => {