comment all console.log in AccompanyingCourse component

This commit is contained in:
2021-08-17 18:32:43 +02:00
parent 76eea2a4eb
commit b87046dcd6
7 changed files with 21 additions and 21 deletions

View File

@@ -81,11 +81,11 @@ export default {
},
methods: {
submitform() {
console.log('submit');
//console.log('submit');
this.$store.dispatch('postFirstComment', this.formdata);
},
removeComment() {
console.log('remove');
//console.log('remove');
this.$store.dispatch('postFirstComment', {});
}
}