add missing .val ref #144
This commit is contained in:
parent
9b7b5d3b02
commit
160e6699e3
|
@ -44,11 +44,11 @@
|
|||
},
|
||||
hsva() {
|
||||
if (!this.$refs.picker || !this.$refs.picker.val) return this.colors;
|
||||
return this.$refs.picker.hsv;
|
||||
return this.$refs.picker.val.hsv;
|
||||
},
|
||||
hsla() {
|
||||
if (!this.$refs.picker || !this.$refs.picker.val) return this.colors;
|
||||
return this.$refs.picker.hsl;
|
||||
return this.$refs.picker.val.hsl;
|
||||
},
|
||||
rgbaString() {
|
||||
const rgba = this.rgba;
|
||||
|
|
Loading…
Reference in New Issue