comment console.log, remove v-bind before ':'

This commit is contained in:
2022-01-12 22:12:36 +01:00
parent e0ee817421
commit e6ea2674c2
4 changed files with 20 additions and 20 deletions

View File

@@ -187,7 +187,7 @@ export default {
getPerson(this.id)
.then(person => new Promise((resolve, reject) => {
this.person = person;
console.log('get person', this.person);
//console.log('get person', this.person);
resolve();
}));
},