You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ant-design-vue/components/color-picker/demo/alpha.md

367 B

#### 透明度 开启属性 `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>