arco-design-vue icon indicating copy to clipboard operation
arco-design-vue copied to clipboard

颜色选择器ColorPicker 在 v-model 属性存在状况下,移动调色板颜色,下方的色调控制条指示器会异常抖动。

Open tujindong opened this issue 1 year ago • 1 comments

Basic Info

  • Package Name And Version: @arco-design/[email protected]
  • Framework version: Vue
  • Browser: chrome121.0.0.0
  • Reproduction Link: https://codesandbox.io/p/sandbox/brave-shtern-rn2f9y?file=%2Fsrc%2FApp.vue%3A8%2C15

复现步骤

<template>
  <a-space>
    <a-color-picker  v-model="value" />
  </a-space>
</template>

<script setup>
import { ref } from 'vue';
const value = ref('#165DFF')
</script>

image image 拖动色板指示器在左下边界位置抖动明显。

预期结果

在受控模式下,拖动色板指示器灵敏度不受影响,色调指示器位置正常。

tujindong avatar Jun 07 '24 09:06 tujindong