#### 透明度
开启属性 `alpha`,可以选择带 Alpha 通道的颜色。
#### Alpha
Set the property `alpha` true, to select a color with alpha channel.
<template>
<a-color-picker v-model="color" :alpha="true" />
</template>
<script>
export default {
data() {
return {
color: '#1890ff',
};
},
};
</script>