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>