aboutsummaryrefslogtreecommitdiffstats
path: root/apps/workflowengine/src/mixins/valueMixin.js
diff options
context:
space:
mode:
Diffstat (limited to 'apps/workflowengine/src/mixins/valueMixin.js')
-rw-r--r--apps/workflowengine/src/mixins/valueMixin.js16
1 files changed, 8 insertions, 8 deletions
diff --git a/apps/workflowengine/src/mixins/valueMixin.js b/apps/workflowengine/src/mixins/valueMixin.js
index 8b565936b82..7dba221ec88 100644
--- a/apps/workflowengine/src/mixins/valueMixin.js
+++ b/apps/workflowengine/src/mixins/valueMixin.js
@@ -24,16 +24,16 @@ const valueMixin = {
props: {
value: {
type: String,
- default: ''
+ default: '',
},
check: {
type: Object,
- default: () => { return {} }
- }
+ default: () => { return {} },
+ },
},
data() {
return {
- newValue: ''
+ newValue: '',
}
},
watch: {
@@ -41,14 +41,14 @@ const valueMixin = {
immediate: true,
handler: function(value) {
this.updateInternalValue(value)
- }
- }
+ },
+ },
},
methods: {
updateInternalValue(value) {
this.newValue = value
- }
- }
+ },
+ },
}
export default valueMixin