dodanie komentarza zby zobaczyc czy sie upgejduje node

This commit is contained in:
2022-06-28 10:41:55 +02:00
parent b9ec183258
commit 56c6f27c77
3 changed files with 3 additions and 1 deletions

View File

@@ -40,6 +40,7 @@ export default {
this.name = (this.value && this.value.name) ? this.value.name : this.name;
this.text = (this.value && this.value.text) ? this.value.text : this.text;
if (this.value.open) this.modalBox = true;
console.log('mounted html');
this.$emit('input',this.value);
},
data: function () {

View File

@@ -77,7 +77,7 @@ export default {
this.h_type = (this.value && this.value.h_type) ? this.value.h_type : this.h_type;
this.align = (this.value && this.value.align) ? this.value.align : this.align;
if (this.value.open) this.modalBox = true;
console.log('pagebuilder', this.$pagebuilder);
console.log('mounted text');
this.$emit('input',this.value);
},

View File

@@ -43,6 +43,7 @@ export default {
this.name = (this.value && this.value.name) ? this.value.name : this.name;
this.text = (this.value && this.value.text) ? this.value.text : this.text;
if (this.value.open) this.modalBox = true;
console.log('mounted textarea');
this.$emit('input',this.value);
},