fix optional color inputs

This commit is contained in:
Henry Jameson 2022-03-27 14:20:55 +03:00
parent 48fd8a66ad
commit 115f38c422
1 changed files with 2 additions and 1 deletions

View File

@ -14,7 +14,7 @@
:modelValue="present"
:disabled="disabled"
class="opt"
@change="$emit('update:modelValue', typeof value === 'undefined' ? fallback : undefined)"
@update:modelValue="$emit('update:modelValue', typeof modelValue === 'undefined' ? fallback : undefined)"
/>
<div class="input color-input-field">
<input
@ -91,6 +91,7 @@ export default {
default: true
}
},
emits: ['update:modelValue'],
computed: {
present () {
return typeof this.modelValue !== 'undefined'