Remove log messages

This commit is contained in:
Christian Cueni 2019-07-15 13:05:42 +02:00
parent a41947e951
commit defce01a3f
1 changed files with 3 additions and 13 deletions

View File

@ -25,24 +25,14 @@
computed: {
contentBlocks() {
let some = this.value.map(contentBlock => {
console.log(Object.assign({}, contentBlock, {
contentBlock: {
contents: {...contentBlock.value}
}
}))
return this.value.map(contentBlock => {
return Object.assign({}, contentBlock, {
contents: {...contentBlock.value},
indent: true
})
})
console.warn(some);
return some;
});
}
},
mounted () {
console.log('list', this.value)
}
}
}
</script>