Skip to content

Commit 75a01a3

Browse files
committed
Remove console.log
1 parent b9da310 commit 75a01a3

File tree

2 files changed

+1
-6
lines changed

2 files changed

+1
-6
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "vue-book",
3-
"version": "0.0.7",
3+
"version": "0.0.8",
44
"description": "Tree view for your demo components",
55
"main": "index.js",
66
"private": false,

src/components/DemoPage/VueBookDemoPage.vue

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -152,9 +152,7 @@ export default {
152152
153153
return demoFilesCollection
154154
},
155-
156155
filteredFiles (): DemoFile[] {
157-
console.log('ConfigSearchText', this.config.searchText)
158156
if (!this.config.searchText) {
159157
return this.files
160158
}
@@ -213,12 +211,9 @@ export default {
213211
return
214212
}
215213
216-
console.log('this.filteredFiles.includes(fileUnderCursor)', this.filteredFiles.includes(fileUnderCursor))
217-
218214
if (!this.filteredFiles.includes(fileUnderCursor)) {
219215
return
220216
}
221-
console.log('fileUnderCursor', fileUnderCursor)
222217
this.$router.push(fileUnderCursor.path)
223218
},
224219
},

0 commit comments

Comments
 (0)