Add saturation property

add a property to decide whether saturation panel should show
This commit is contained in:
Alexander Misel 2017-12-30 15:42:19 +08:00 committed by GitHub
parent 6b2cd6742a
commit 2b2dc78add
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -24,7 +24,7 @@
v-transfer-dom>
<div :class="[prefixCls + '-picker']">
<div :class="[prefixCls + '-picker-wrapper']">
<div :class="[prefixCls + '-picker-panel']">
<div v-if="saturation" :class="[prefixCls + '-picker-panel']">
<Saturation v-model="saturationColors" @change="childChange"></Saturation>
</div>
<div :class="[prefixCls + '-picker-hue-slider']">
@ -130,6 +130,10 @@
value: {
type: String
},
saturation: {
type: Boolean,
default: true
},
alpha: {
type: Boolean,
default: false
@ -367,4 +371,4 @@
}
}
};
</script>
</script>