Code refactoring

This commit is contained in:
Burak Civan
2021-05-25 22:19:49 +03:00
parent 32894e7151
commit d145d41ae6
3 changed files with 12 additions and 13 deletions

View File

@ -127,11 +127,10 @@ export default {
this.$emit('change', this.real_model);
}
},
watch: {
real_model: function(val) {
this.real_model = val;
this.$emit('interface', this.real_model);
watch: {
value: function(val) {
this.real_model = val;
}
}
}