From 7c017f7d3a067bd539f12b278df393ceac4d699d Mon Sep 17 00:00:00 2001 From: ori agranat Date: Fri, 22 Mar 2019 16:44:58 +0200 Subject: [PATCH] returning a value fixed --- chameleon-client/src/components/InputTab.vue | 8 ++++---- chameleon-client/src/components/ch-slider.vue | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) 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); } } }