diff --git a/chameleon-client/src/components/InputTab.vue b/chameleon-client/src/components/InputTab.vue index 8da5b2181..ca31af1f2 100644 --- a/chameleon-client/src/components/InputTab.vue +++ b/chameleon-client/src/components/InputTab.vue @@ -1,7 +1,7 @@ @@ -19,12 +19,12 @@ props:['title','value'], data() { return { - val: this.value + content:this.value } }, methods: { handleInput() { - this.$emit('input',this.val); + this.$emit('input',this.value); } } }