diff --git a/src/components/scInput/inputVague.vue b/src/components/scInput/inputVague.vue index 6b65bc3..9d75dab 100644 --- a/src/components/scInput/inputVague.vue +++ b/src/components/scInput/inputVague.vue @@ -27,7 +27,7 @@ export default { activation_text:{ handler(val){ if(val){ - this.localText = val.value; + this.localText = val.value.replace(/%/g, ""); } }, deep:true @@ -49,7 +49,7 @@ export default { emitActivationText() { this.$emit('update:activation_text', { operator: this.activation_text.operator, - value: this.localText? this.localText:"" + value: this.localText? '%'+this.localText+'%':"" }); this.$emit('fetchData'); }