fix optional color inputs

This commit is contained in:
Henry Jameson 2022-03-27 14:20:55 +03:00
parent 48fd8a66ad
commit 115f38c422

View file

@ -14,7 +14,7 @@
:modelValue="present" :modelValue="present"
:disabled="disabled" :disabled="disabled"
class="opt" 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"> <div class="input color-input-field">
<input <input
@ -91,6 +91,7 @@ export default {
default: true default: true
} }
}, },
emits: ['update:modelValue'],
computed: { computed: {
present () { present () {
return typeof this.modelValue !== 'undefined' return typeof this.modelValue !== 'undefined'