eslint
This commit is contained in:
parent
39dd08e694
commit
3492d7f81e
4 changed files with 13 additions and 13 deletions
|
@ -13,8 +13,8 @@
|
|||
v-if="typeof fallback !== 'undefined' && showOptionalTickbox"
|
||||
:checked="present"
|
||||
:disabled="disabled"
|
||||
@change="$emit('input', typeof value === 'undefined' ? fallback : undefined)"
|
||||
class="opt"
|
||||
@change="$emit('input', typeof value === 'undefined' ? fallback : undefined)"
|
||||
/>
|
||||
<div class="input color-input-field">
|
||||
<input
|
||||
|
@ -46,6 +46,9 @@
|
|||
import Checkbox from '../checkbox/checkbox.vue'
|
||||
import { hex2rgb } from '../../services/color_convert/color_convert.js'
|
||||
export default {
|
||||
components: {
|
||||
Checkbox
|
||||
},
|
||||
props: {
|
||||
// Name of color, used for identifying
|
||||
name: {
|
||||
|
@ -83,9 +86,6 @@ export default {
|
|||
default: true
|
||||
}
|
||||
},
|
||||
components: {
|
||||
Checkbox
|
||||
},
|
||||
computed: {
|
||||
present () {
|
||||
return typeof this.value !== 'undefined'
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue