Skip to content

Commit 1a0c758

Browse files
committed
remove console.logs
1 parent 144fe18 commit 1a0c758

File tree

2 files changed

+0
-4
lines changed

2 files changed

+0
-4
lines changed

example/App.vue

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -237,9 +237,6 @@ export default {
237237
console.log('newVal: ', newVal, ' oldVal: ', oldVal)
238238
},
239239
customLinkFormatter(data) {
240-
console.log(data)
241-
console.log(data.startsWith('http://'))
242-
console.log(data.startsWith('http'))
243240
if (data.startsWith('http://')) {
244241
return `<a style="color:red;" href="${data}">"${data}"</a>`;
245242
} else {

src/components/simple-text.vue

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,6 @@
3838
3939
textFormatter (data) {
4040
if (this.customValueFormatter) {
41-
console.log(this.customValueFormatter)
4241
return this.customValueFormatter(
4342
data, this.currentKey, this.parentData
4443
) || this.defaultFormatter(data)

0 commit comments

Comments
 (0)